diff options
Diffstat (limited to 'editor/reftests/spellcheck-textarea-property-dynamic.html')
-rw-r--r-- | editor/reftests/spellcheck-textarea-property-dynamic.html | 11 |
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 000000000..d0c94f68e --- /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> |