https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 6c9ce83bf002cce2799ffa270c6eeb4c1227d972 authored by ffxbld on 07 February 2013, 02:23:21 UTC
Added FENNEC_19_0b5_RELEASE FENNEC_19_0b5_BUILD2 tag(s) for changeset 20d099b63e84. DONTBUILD CLOSED TREE a=release
Tip revision: 6c9ce83
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