Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 4924441.html
blobfbe09521186b7602356f3827eb7bd246dbcb5132
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>
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>