https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e0b8d64cc820023ea96ad16b370e53eeb06d3790 authored by ffxbld on 12 February 2014, 20:42:44 UTC
Added FIREFOX_27_0_1_RELEASE FIREFOX_27_0_1_BUILD1 tag(s) for changeset 0414e679f2ab. DONTBUILD CLOSED TREE a=release
Tip revision: e0b8d64
bug632215-1.html
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  </head>
  <body>
    <iframe src="data:text/html,<body></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 = true;
        d.body.contentEditable = false;
        d.designMode = "off";
        d.designMode = "on";
        d.body.focus();
        synthesizeKey("x", {});
        s.collapse(d.body.firstChild, 1);
        synthesizeKey("x", {});
        setTimeout(function() {
          document.documentElement.removeAttribute("class");
        }, 0);
      };
    </script>
  </body>
</html>
back to top