summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/dynamic-text-1b.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/selection/dynamic-text-1b.html')
-rw-r--r--layout/reftests/selection/dynamic-text-1b.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/selection/dynamic-text-1b.html b/layout/reftests/selection/dynamic-text-1b.html
new file mode 100644
index 0000000000..1ffcf2329d
--- /dev/null
+++ b/layout/reftests/selection/dynamic-text-1b.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<head>
+<body style="white-space:pre"> FG
+ JK
+<script>
+document.body.offsetTop;
+var t = document.body.firstChild;
+var sel = window.getSelection();
+sel.collapse(t, 1);
+sel.extend(t, 3);
+
+function doTest() {
+ t.insertData(0, ' BC \n');
+ document.documentElement.removeAttribute('class');
+}
+document.addEventListener("MozReftestInvalidate", doTest);
+</script>
+</body>
+</html>