summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug989012-3.html
blob: 7448b052b9204c74630c0731c67709c82afc211e (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
29
30
31
<html class="reftest-wait">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <script src="/tests/SimpleTest/EventUtils.js"></script>
    <style>
      img {
        border: solid 1px red;
        mid-width: 1em;
        display: inline-block;
      }
    </style>
  </head>
  <body onload="start()">
    <div onfocus="setTimeout(done, 0)" contenteditable>foo<img>bar</div>
    <script>
      var div = document.querySelector("div");
      function start() {
        div.focus();
      }
      function done() {
        var sel = getSelection();
        sel.collapse(div, 0);
        // Press Right four times to set the caret right before "bar"
        for (var i = 0; i < 4; ++i) {
          synthesizeKey("KEY_ArrowRight");
        }
        document.documentElement.removeAttribute("class");
      }
    </script>
  </body>
</html>