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