4 <p id=
"description">This tests deleting when the caret is at the start of a paragraph just after a table. The content in that paragraph should be moved into the last table cell unless that content is another table.
</p>
5 <div contenteditable=
"true" id=
"root"><table border=
"1"><tr><td>All the content in this editable region
</td></tr></table><div id=
"div">should be in one table cell.
</div></div>
7 <script src=
"../../resources/dump-as-markup.js"></script>
9 var sel
= window
.getSelection();
10 var div
= document
.getElementById("div");
12 document
.execCommand("Delete");
13 Markup
.description(description
.textContent
);