Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / delete-first-list-item.html
blob4ccf9c5cc17b54bdf25ff5a375505755c0d4d4dd
1 <script>
2 if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
4 </script>
5 <p>This tests deletion when the caret is in an empty list item at the beginning of the document. It also makes sure that the style inside the empty list item is retained. You should see '<b>foo</b>' followed by a list item containing 'bar'.</p>
6 <div id="div" contenteditable="true"><ul><li id="start" style="font-weight:bold;"></li><li>bar</li></ul></div>
8 <script>
9 var s = window.getSelection();
10 var e = document.getElementById("start");
12 s.collapse(e, 0);
13 document.execCommand("Delete");
14 document.execCommand("InsertText", false, "foo");
15 </script>