summaryrefslogtreecommitdiffstats
path: root/editor/reftests/spellcheck-textarea-property-dynamic.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/reftests/spellcheck-textarea-property-dynamic.html')
-rw-r--r--editor/reftests/spellcheck-textarea-property-dynamic.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/reftests/spellcheck-textarea-property-dynamic.html b/editor/reftests/spellcheck-textarea-property-dynamic.html
new file mode 100644
index 0000000000..d0c94f68e8
--- /dev/null
+++ b/editor/reftests/spellcheck-textarea-property-dynamic.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+<body onload="init()">
+ <textarea>blahblahblah</textarea>
+ <script>
+ function init() {
+ document.querySelector("textarea").spellcheck = false;
+ }
+ </script>
+</body>
+</html>