blob: 9a6051b23e58793396d893e29a1625c9a9b930a7 [file] [log] [blame]
<div id="description">This tests for a crash when inserting a text node at the start of a block where it will be become unrendered. The test should not crash.</div>
<div id="edit" contenteditable="true"><span class="Apple-tab-span" style="white-space:pre;"> </span>xxx</div>
<script>
if (window.layoutTestController)
window.layoutTestController.dumpAsText();
edit = document.getElementById("edit");
window.getSelection().setPosition(edit, 0);
document.execCommand("InsertHTML", false, " ");
if (window.layoutTestController)
document.body.innerText = document.getElementById("description").innerText;
</script>