summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/240933-1-ref.html
blob: 0d727af3a286c026ebf9e1088653ec73ec3a6bd8 (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
<!DOCTYPE html>
<html>
<body onload="setup()">
<textarea id="ta" dir="rtl">

&#x05d0;a&#x05d1;

</textarea>
<textarea id="tb">

abc

</textarea>

<div id="coords1"></div>
<div id="coords2"></div>

<script>
  function setup() {
    document.getElementById("coords1").innerHTML = document.getElementById("ta").selectionStart;
    document.getElementById("coords2").innerHTML = document.getElementById("tb").selectionStart;
  }
</script>
</body>
</html>