blob: 980bece1e26d8f46e21a22dd7e4ed361e3ee083b [file] [log] [blame]
<div id="description">This tests for a bug where FormatBlock in a p element would leave one letter with the wrong style.</div>
<div id="edit" contentEditable="true"><p>This should be in a p element.</p><p id="p">This should be in an H2.</p></div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
p = document.getElementById("p");
s = window.getSelection();
s.collapse(p, 0);
document.execCommand("FormatBlock", false, "h2");
if (window.testRunner)
document.body.innerText = document.getElementById("description").innerText + "\n\n" + document.getElementById("edit").innerHTML;
</script>