Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / deleting / 5032066.html
1 <!DOCTYPE html>
2 <html>
3 <body>
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&nbsp;</td></tr></table><div id="div">should be in one table cell.</div></div>
6
7 <script src="../../resources/dump-as-markup.js"></script>
8 <script>
9 var sel = window.getSelection();
10 var div = document.getElementById("div");
11 sel.collapse(div, 0);
12 document.execCommand("Delete");
13 Markup.description(description.textContent);
14 Markup.dump("root");
15 </script>
16 </body>
17 </html>