1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-07-20 22:18:32 +00:00
Files
UXP/editor/reftests/spellcheck-contenteditable-property-dynamic.html
T

12 lines
223 B
HTML

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