blob: ce2a78614c647059f032e154f849ec2941852d58 [file] [log] [blame]
<p>This tests for a deletion bug. The paragraph inside the table should be in a list, and the test shouldn't hang.</p>
<div id="div" contenteditable="true"><div><table id="table" border="1"><tr><td id="td">foo</td></tr></table></div>
<br id="br"></div>
<script>
td = document.getElementById("td");
br = document.getElementById("br");
s = window.getSelection();
s.setBaseAndExtent(td, 0, br, 0);
document.execCommand("InsertUnorderedList");
</script>