diff options
Diffstat (limited to 'editor/reftests/spellcheck-input-ref.html')
-rw-r--r-- | editor/reftests/spellcheck-input-ref.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/reftests/spellcheck-input-ref.html b/editor/reftests/spellcheck-input-ref.html new file mode 100644 index 0000000000..8dde5e6f1a --- /dev/null +++ b/editor/reftests/spellcheck-input-ref.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<body> + <input type="text" value="blahblahblah" spellcheck="true"> + <script> + var i = document.getElementsByTagName("input")[0]; + i.focus(); // init the editor + i.blur(); // we actually don't need the focus + </script> +</body> +</html> |