Files
tubestation/layout/reftests/editor/spellcheck-textarea-attr-dynamic-override-inherit.html

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>