mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
18 lines
420 B
HTML
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>
|