diff options
Diffstat (limited to 'editor/reftests/spellcheck-textarea-focused.html')
-rw-r--r-- | editor/reftests/spellcheck-textarea-focused.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/editor/reftests/spellcheck-textarea-focused.html b/editor/reftests/spellcheck-textarea-focused.html new file mode 100644 index 0000000000..04d689cc1a --- /dev/null +++ b/editor/reftests/spellcheck-textarea-focused.html @@ -0,0 +1,13 @@ +<!DOCTYPE html>
+<html>
+<body>
+
+ <textarea id="testBox">blahblahblah</textarea>
+ <script type="text/javascript">
+ //Adding focus to the textbox should trigger a spellcheck
+ document.getElementById("testBox").focus();
+ document.getElementById("testBox").blur();
+ </script>
+
+</body>
+</html>
|