summaryrefslogtreecommitdiffstats
path: root/editor/reftests/caret_on_presshell_reinit-ref.html
blob: 262c67a74890a9900346bd695e7a326cb63476c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <body>
    <div style="position: absolute">
      <iframe srcdoc="<body contenteditable>foo</body>"></iframe>
    </div>
    <script type="text/javascript">
      onload = function() {
        var iframe = document.querySelector("iframe");
        var win = iframe.contentWindow;
        var body = win.document.body;
        iframe.focus();
        body.focus();
        var sel = win.getSelection();
        sel.collapse(body.firstChild, 0);
      };
    </script>
  </body>
</html>