tenfourfox/editor/reftests/spellcheck-textarea-attr-dynamic-override.html

12 lines
257 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body onload="init()">
<textarea spellcheck="true">blahblahblah</textarea>
<script>
function init() {
document.querySelector("textarea").setAttribute("spellcheck", "false");
}
</script>
</body>
</html>