1
0
Fork 0
firefox/layout/base/tests/bug632215-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
425 B
HTML

<!DOCTYPE html>
<html>
<body>
<iframe srcdoc="<body spellcheck=false>xx</body>"></iframe>
<script>
onload = function() {
var i = document.querySelector("iframe");
var d = i.contentDocument;
var w = i.contentWindow;
d.designMode = "on";
i.focus();
d.body.focus();
w.getSelection().collapse(d.body.firstChild, 2);
};
</script>
</body>
</html>