Mypal/editor/reftests/spellcheck-input-property-dynamic-override.html
2019-03-11 13:26:37 +03:00

12 lines
266 B
HTML

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