gecko/layout/base/tests/bug632215-ref.html
Ehsan Akhgari 981256b0b6 Tests for bug 632215; r=roc a=blocking-final+
--HG--
extra : rebase_source : 0efdc19b409e8dcde458fd8f019b06e8396e1269
2011-02-10 16:23:09 -05:00

18 lines
420 B
HTML

<!DOCTYPE html>
<html>
<body>
<iframe src="data:text/html,<body>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>