blob: 4ee61adad4126427049256e09d4e3762a3fef0a8 [file] [log] [blame]
<p>This tests for a bug when creating a list from a table. The table should be inside a a list item. <b>This demonstrates a bug: the table should be below the list marker, not above it.</b></p>
<div contenteditable="true" id="div"><table border="1"><tr><td>foo</td></tr></table></div>
<script>
var div = document.getElementById("div");
div.focus();
document.execCommand("SelectAll");
document.execCommand("InsertUnorderedList");
</script>