summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug989012-1-ref.html
blob: 68020380890612b2f21a8b89f2b1e4545ac936d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html class="reftest-wait">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <script src="/tests/SimpleTest/EventUtils.js"></script>
  </head>
  <body onload="start()">
    <div onfocus="done()" contenteditable>foo<img alt="IMAGE">bar</div>
    <script>
      var div = document.querySelector("div");
      function start() {
        div.focus();
      }
      function done() {
        var sel = getSelection();
        // Set the caret right before "bar"
        sel.collapse(div.lastChild, 0);
        document.documentElement.removeAttribute("class");
      }
    </script>
  </body>
</html>