Mypal/editor/reftests/spellcheck-textarea-attr-dy...

12 lines
236 B
HTML

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