blob: b361b93040298192439188b049aca880a62d4f3c [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Turning off spellcheck on editable elements</title>
<link rel=match href="references/spelling-markers-001-ref.html">
<link rel=help href="https://html.spec.whatwg.org/multipage/interaction.html#spelling-and-grammar-checking">
<meta name=assert content="Spellchecking stops applying to editable elements when they become non editable">
<div id="test" contenteditable=true>This test passes if there is no visual marker indicating the <span id=child>spellinnnnnggg</span> mistake in this sentence, and fails otherwise.</div>
<script>
var test = document.getElementById("test");
// Force spellcheck by focus and then blur
test.focus();
test.blur();
var child = document.getElementById("child");
child.setAttribute("contenteditable", false);
</script>