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

12 lines
218 B
HTML
Raw Normal View History

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