4 <p id=
"description">This test verifies that backspace at the beginning of a table-cell is a no-op. The first dump verifies that the caret stays before 'abc', and doesn't select the nested table. The second dump verifies that the caret stays before 'def'.
</p>
5 <div id=
"test" contenteditable=
"true"><table><tr><td><table><tr><td>ghi
</td><td>jkl
</td></tr></table></td><td id=
"first">abc
</td><td id=
"second">def
</td></tr></table></div>
6 <script src=
"../../resources/dump-as-markup.js"></script>
8 Markup
.description(document
.getElementById("description").innerText
);
10 window
.getSelection().collapse(document
.getElementById("first").firstChild
, 0);
11 document
.execCommand("Delete");
14 window
.getSelection().collapse(document
.getElementById("second").firstChild
, 0);
15 document
.execCommand("Delete");