https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 09521386c8343bddc4222caf707090f7e2d43d56 authored by ffxbld on 21 December 2011, 20:55:14 UTC
Added tag FENNEC_10_0b1_BUILD1 for changeset 88dc4e690b7e. CLOSED TREE a=release
Tip revision: 0952138
textarea-rtl-dynamic-style.html
<!DOCTYPE HTML>
<html class="reftest-wait">
 <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title></title>
 </head>
 <body>
  <textarea cols=20 rows=4></textarea>
  <script>
    onload = function() {
      setTimeout(function() {
        document.querySelector("textarea").style.direction = "rtl";
        document.documentElement.removeAttribute("class");
      });
    };
  </script>
 </body>
</html>
back to top