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