tenfourfox/editor/reftests/spellcheck-contenteditable-attr-dynamic-inherit.html

12 lines
224 B
HTML
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body onload="init()">
<div contenteditable>blahblahblah</div>
<script>
function init() {
document.body.setAttribute("spellcheck", "false");
}
</script>
</body>
</html>