summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug632215-2.html
blob: 02b0acd953aad938e2cbf0c39ffe69a3eb17deec (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
28
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <script src="/tests/SimpleTest/EventUtils.js"></script>
  </head>
  <body>
    <iframe srcdoc="<body contenteditable spellcheck=false></body>"></iframe>
    <script>
      onload = function() {
        var i = document.querySelector("iframe");
        var d = i.contentDocument;
        var w = i.contentWindow;
        var s = w.getSelection();
        i.focus();
        d.body.contentEditable = false;
        d.designMode = "off";
        d.designMode = "on";
        d.body.focus();
        sendString("x");
        s.collapse(d.body.firstChild, 1);
        sendString("x");
        setTimeout(function() {
          document.documentElement.removeAttribute("class");
        }, 0);
      };
    </script>
  </body>
</html>