Mypal/editor/reftests/spellcheck-input-attr-dynam...

12 lines
283 B
HTML

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