summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/600803-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/600803-1.html')
-rw-r--r--layout/reftests/bugs/600803-1.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/bugs/600803-1.html b/layout/reftests/bugs/600803-1.html
new file mode 100644
index 0000000000..6b73a21560
--- /dev/null
+++ b/layout/reftests/bugs/600803-1.html
@@ -0,0 +1,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 = "aaa\nbbb";
+ t.value = "aaa\nbbb\n";
+ t.value += "X";
+ document.getElementById("start").textContent = t.selectionStart;
+ document.getElementById("end").textContent = t.selectionEnd;
+ }
+ </script>
+ </body>
+</html>