summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/600803-1-ref.html
blob: 876a893a640f48eca5857a8f1d3df51c2221572b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <body onload="onLoad()">
    <textarea></textarea>
    <div id="start"></div>
    <div id="end"></div>
    <script>
      function onLoad() {
        var t = document.querySelector("textarea");
        t.value = "Xaa\nbbb";
        t.value = "aaa\nbbb\n";
        t.value += "X";
        document.getElementById("start").textContent = t.selectionStart;
        document.getElementById("end").textContent = t.selectionEnd;
      }
    </script>
  </body>
</html>