https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e158bec1801248af552d92be2bb48a556d02a084 authored by seabld on 11 April 2013, 03:29:55 UTC
Added tag SEAMONKEY_2_17_1_RELEASE for changeset FIREFOX_20_0_1_BUILD1. CLOSED TREE a=release
Tip revision: e158bec
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