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

12 lines
241 B
HTML

<!DOCTYPE html>
<html>
<body onload="init()">
<div contenteditable spellcheck="true">blahblahblah</div>
<script>
function init() {
document.querySelector("div").spellcheck = false;
}
</script>
</body>
</html>