tenfourfox/editor/reftests/spellcheck-textarea-attr-dynamic.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

12 lines
239 B
HTML

<!DOCTYPE html>
<html>
<body onload="init()">
<textarea>blahblahblah</textarea>
<script>
function init() {
document.querySelector("textarea").setAttribute("spellcheck", "false");
}
</script>
</body>
</html>