summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/textarea/in-dynamic-rtl-doc.html
blob: c8afa20cf26182b15cd68ad44d40784a0c18adf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<html class="reftest-wait">
 <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title></title>
 </head>
 <body style="text-align: left">
  <textarea cols=20 rows=4></textarea>
  <script>
    onload = function() {
      setTimeout(function() {
        document.dir = "rtl";
        document.documentElement.removeAttribute("class");
      });
    };
  </script>
 </body>
</html>