Mypal/editor/reftests/spellcheck-textarea-property-dynamic-override.html

12 lines
240 B
HTML
Raw Normal View History

2019-03-11 10:26:37 +00:00
<!DOCTYPE html>
<html>
<body onload="init()">
<textarea spellcheck="true">blahblahblah</textarea>
<script>
function init() {
document.querySelector("textarea").spellcheck = false;
}
</script>
</body>
</html>