summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1354478-2.html
blob: fac2a05097ebb61214f29c2e711fb9ff9c455cc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html class="reftest-wait">
  <head>
    <meta charset="utf-8">
    <style>
      textarea {
        inline-size: 200px;
        -moz-appearance: none;
        appearance: none;
        unicode-bidi: plaintext;
      }
      div {
        inline-size: 200px;
        block-size: 20px;
        position: relative;
        inset-block-start: -20px;
        background: silver;
      }
    </style>
    <script>
      function start() {
        var textarea = document.querySelector("textarea");
        textarea.selectionStart = 1; // place caret between the letters
        textarea.selectionEnd = 1;
        textarea.focus();
      }
      function done() {
        document.documentElement.removeAttribute("class");
      }
    </script>
  </head>
  <body onload="start()">
    <textarea dir="rtl" onfocus="done()">دد</textarea>
    <div></div>
  </body>
</html>