https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 47f62ac0c09ea198ee3a32c1416fe4f914ed597e authored by Boris Zbarsky on 17 April 2012, 17:30:07 UTC
Merge backout of changeset ca80d75dbcb1 (which was a backout of bug 734019) in an attempt to fix bug 734019. a=akeybl
Tip revision: 47f62ac
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