summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/240933-2-ref.html
blob: 7dbc082a58a5fbf494ab1e6e5a1dca1369516264 (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
<!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("ta").selectionStart = 3;
    document.getElementById("ta").selectionEnd = 3;
    document.getElementById("coords1").innerHTML = document.getElementById("ta").selectionStart;
    document.getElementById("tb").selectionStart = 3;
    document.getElementById("tb").selectionEnd = 3;
    document.getElementById("coords2").innerHTML = document.getElementById("tb").selectionStart;
  }
</script>
</body>
</html>