5 document
.execCommand("InsertText", false, "This tests for a crash when making and removing lists from underlined content.");
6 document
.execCommand("InsertParagraph");
7 document
.execCommand("InsertText", false, "All three paragraphs should be in list items.");
8 document
.execCommand("InsertParagraph");
9 document
.execCommand("InsertText", false, "And all three should be underlined.");
10 document
.execCommand("SelectAll");
11 document
.execCommand("Underline");
12 document
.execCommand("InsertOrderedList");
13 document
.execCommand("InsertOrderedList");
14 document
.execCommand("InsertOrderedList");
19 <body contenteditable=
"true" onload=
"runTest();"></body>