diff options
Diffstat (limited to 'editor/reftests/spellcheck-input-property-dynamic-override-inherit.html')
-rw-r--r-- | editor/reftests/spellcheck-input-property-dynamic-override-inherit.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/reftests/spellcheck-input-property-dynamic-override-inherit.html b/editor/reftests/spellcheck-input-property-dynamic-override-inherit.html new file mode 100644 index 000000000..eb380dc96 --- /dev/null +++ b/editor/reftests/spellcheck-input-property-dynamic-override-inherit.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<body onload="init()" spellcheck="false"> + <input class="spell-checked" type="text" value="blahblahblah"> + <script> + function init() { + document.body.spellcheck = true; + } + </script> +</body> +</html> |