fix #698, replay scroll on iframe document

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 849e60479b
commit 6ad849ff8d

View File

@@ -1601,6 +1601,13 @@ export class Replayer {
left: d.x,
behavior: 'smooth',
});
} else if (target.__sn.type === NodeType.Document) {
// nest iframe content document
((target as unknown) as Document).defaultView!.scrollTo({
top: d.y,
left: d.x,
behavior: 'smooth',
});
} else {
try {
((target as Node) as Element).scrollTop = d.y;