summaryrefslogtreecommitdiffstats
path: root/editor/reftests/selection_visibility_after_reframe-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/reftests/selection_visibility_after_reframe-2.html')
-rw-r--r--editor/reftests/selection_visibility_after_reframe-2.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/editor/reftests/selection_visibility_after_reframe-2.html b/editor/reftests/selection_visibility_after_reframe-2.html
new file mode 100644
index 0000000000..579bbedd88
--- /dev/null
+++ b/editor/reftests/selection_visibility_after_reframe-2.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <input value="foo">
+ <script>
+ var i = document.querySelector("input");
+ i.focus();
+ i.selectionStart = 1;
+ i.selectionEnd = 2;
+ </script>
+ </body>
+</html>