https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 39ff442a68b35e2412bd3f81a1fe0046dbad56a1 authored by ffxbld on 04 April 2012, 03:40:54 UTC
Added FENNEC_12_0b4_RELEASE FENNEC_12_0b4_BUILD1 tag(s) for changeset a8e7d1956aa3. DONTBUILD CLOSED TREE a=release
Tip revision: 39ff442
bug664087-2-ref.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 dir="rtl" onfocus="done()">ab
c</textarea>
    <script>
      var textarea = document.querySelector("textarea");
      function start() {
        textarea.focus();
      }
      function done() {
        synthesizeKey("VK_RIGHT", {});
        synthesizeKey("VK_RIGHT", {});
        document.documentElement.removeAttribute("class");
      }
    </script>
  </body>
</html>
back to top