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

12 lines
265 B
HTML

<!DOCTYPE html>
<html>
<body onload="init()" spellcheck="false">
<input class="spell-checked" type="text" value="blahblahblah">
<script>
function init() {
document.body.setAttribute("spellcheck", "true");
}
</script>
</body>
</html>