blob: 64ccfcf4c21f98d2926d62ebc3184b31d847851c [file] [log] [blame]
<div id="description">This tests for an ASSERT during a RemoveFormat call when it's called on a selection containing only a horizontal rule. It should not ASSERT.</div>
<div id="edit" contentEditable="true"><hr></div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
edit = document.getElementById("edit");
edit.focus();
document.execCommand("SelectAll");
document.execCommand("RemoveFormat");
if (window.testRunner)
document.body.innerText = document.getElementById("description").innerText + "\n" + edit.innerHTML;
</script>