https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 56a8fa3838025fac123ae9b2e12720aba3a7c402 authored by seabld on 06 September 2012, 09:47:36 UTC
Added tag SEAMONKEY_2_13b2_RELEASE for changeset FIREFOX_16_0b2_BUILD1. CLOSED TREE a=release
Tip revision: 56a8fa3
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