https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 63254fa16f70a245e6d33bfd4bcc94018c1b300b authored by ffxbld on 14 February 2017, 01:04:26 UTC
Added FENNEC_51_0_4_RELEASE FENNEC_51_0_4_BUILD1 tag(s) for changeset a622e89121a7. DONTBUILD CLOSED TREE a=release
Tip revision: 63254fa
bug989012-1.html
<html class="reftest-wait">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <script type="text/javascript" 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();
        sel.collapse(div, 0);
        // Press Right four times to set the caret right before "bar"
        for (var i = 0; i < 4; ++i) {
          synthesizeKey("VK_RIGHT", {});
        }
        document.documentElement.removeAttribute("class");
      }
    </script>
  </body>
</html>
back to top