upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 4747450.html
1 <p>This test for a bug in Insert{Un}OrderedList.  Inside an empty editable region, a new paragraph is added, then a list is created.  The caret should be <b>inside</b> the empty list item.</p>
2 <div id="div" contenteditable="true"></div>
3
4 <script>
5 var div = document.getElementById("div");
6 div.focus();
7
8 document.execCommand("InsertParagraph");
9 document.execCommand("InsertUnorderedList");
10 </script>