Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 5190926.html
blob6dc105e095c5523f2a9bf1b0a966eb5dbc0c7752
1 <head>
2 <script>
3 function runTest() {
4 document.body.focus();
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");
16 </script>
17 </head>
19 <body contenteditable="true" onload="runTest();"></body>