upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 4924441.html
1 <p>This tests for a bug where changing the list type of an indented list would create unwanted nesting.  You should see a single ordered list item in an indented list.</p>
2 <div id="div" contenteditable="true"><br></div>
3
4 <script>
5 var div = document.getElementById("div");
6 div.focus();
7 document.execCommand("InsertText", false, "foo");
8 document.execCommand("InsertUnorderedList");
9 document.execCommand("Indent");
10 document.execCommand("InsertOrderedList");
11 </script>