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