fix #698, replay scroll on iframe document

This commit is contained in:
Yanzhen Yu
2021-11-07 14:39:43 +08:00
parent 3d5b43890e
commit 78526a3aae

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;