diff options
Diffstat (limited to 'editor/reftests/selection_visibility_after_reframe-3.html')
-rw-r--r-- | editor/reftests/selection_visibility_after_reframe-3.html | 14 |
1 files changed, 14 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..b05f130a13 --- /dev/null +++ b/editor/reftests/selection_visibility_after_reframe-3.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <body> + <input value="foo"> + <script> + var i = document.querySelector("input"); + i.selectionStart = 1; + i.selectionEnd = 2; + i.style.display = "none"; + document.body.clientHeight; + i.style.display = ""; + </script> + </body> +</html> |