summaryrefslogtreecommitdiffstats
path: root/editor/reftests/caret_on_presshell_reinit-2.html
blob: 444b72dccd033f4a8cd914e96f7241e8db41d4be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html class="reftest-wait">
  <body>
    <iframe srcdoc="<body><div></div></body>"></iframe>
    <script type="text/javascript">
      onload = function() {
        var i = document.querySelector("iframe");
        var win = i.contentWindow;
        var doc = win.document;
        var div = doc.querySelector("div");
        win.getSelection().collapse(div, 0);
        i.focus();
        div.contentEditable = true;
        div.focus();
        setTimeout(function() {
          var span = doc.createElement("span");
          span.appendChild(doc.createTextNode("foo"));
          div.appendChild(span);
          div.style.outline = "none"; // remove the focus outline
          i.style.position = "absolute";
          document.body.clientWidth;
          document.documentElement.removeAttribute("class");
        }, 0);
      };
    </script>
  </body>
</html>