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>
5 var div
= document
.getElementById("div");
7 document
.execCommand("InsertText", false, "foo");
8 document
.execCommand("InsertUnorderedList");
9 document
.execCommand("Indent");
10 document
.execCommand("InsertOrderedList");