- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / execCommand / create-list-1.html-disabled
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>
3
4 <script>
5 var div = document.getElementById("div");
6 var sel = window.getSelection();
7
8 sel.setPosition(div, 0);
9 sel.modify("move", "forward", "line");
10 document.execCommand("InsertOrderedList");
11 </script>