https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 19b92d6d899df8d4bd5e74d88d27ad234092f275 authored by ffxbld on 30 July 2013, 18:07:37 UTC
Added FIREFOX_23_0_RELEASE FIREFOX_23_0_BUILD1 tag(s) for changeset 2c423c4c6d0b. DONTBUILD CLOSED TREE a=release
Tip revision: 19b92d6
bug664087-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()">
    <textarea onfocus="typeIntoMe()"></textarea>
    <script>
      function start() {
        document.querySelector("textarea").focus();
      }
      function typeIntoMe() {
        setTimeout(function() {
          synthesizeKey("א", {});
          synthesizeKey("VK_ENTER", {});
          synthesizeKey("ג", {});
          synthesizeKey("VK_UP", {});
          synthesizeKey("VK_END", {});
          synthesizeKey("ב", {});
          document.documentElement.removeAttribute("class");
        }, 0);
      }
    </script>
  </body>
</html>
back to top