Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / create-list-1.html-disabled
blob7537dfb40176fd6a23e135d044cdcce349ea1449
1 <p>This tests list creation in an empty line.  The caret should end up in the empty list item.</p>
2 <div contenteditable="true" id="div">Paragraph One.<br><br>Paragraph Two.</div>
4 <script>
5 var div = document.getElementById("div");
6 var sel = window.getSelection();
8 sel.collapse(div, 0);
9 sel.modify("move", "forward", "line");
10 document.execCommand("InsertOrderedList");
11 </script>