summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/extend-1i.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/selection/extend-1i.html')
-rw-r--r--layout/reftests/selection/extend-1i.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/selection/extend-1i.html b/layout/reftests/selection/extend-1i.html
new file mode 100644
index 0000000000..4165397f68
--- /dev/null
+++ b/layout/reftests/selection/extend-1i.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<head>
+<body style="white-space:pre">0123456789
+<script>
+document.body.offsetTop;
+// Test focus < anchor < newfocus
+var t = document.body.firstChild;
+var sel = window.getSelection();
+sel.collapse(t, 2); // anchor
+sel.extend(t, 1); // focus
+
+function doTest() {
+ sel.extend(t, 8); // newfocus
+ document.documentElement.removeAttribute('class');
+}
+document.addEventListener("MozReftestInvalidate", doTest);
+</script>
+</body>
+</html>