Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/editor/reftests/spellcheck-contenteditable-property-dynamic-override.html

11 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>