Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / switch-multiple-list-items-crash.html
blobc879d81f424fc2c4bf9ddeac0565cc0f0c123888
1 <html><head><script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
6 function go() {
7 document.execCommand("selectall");
8 document.designMode="on";
9 document.execCommand("InsertLineBreak");
10 document.execCommand("insertimage");
11 document.execCommand("InsertOrderedList");
12 document.execCommand("inserthtml", false, "z");
13 document.execCommand("InsertHorizontalRule");
14 document.execCommand("selectall");
15 document.execCommand("createlink", false, "z");
16 document.execCommand("insertunorderedlist");
17 document.body.innerHTML = 'This test ensures WebKit does not crash when switching the type of a list with multiple list items.<br>PASS';
19 </script></head><body onload="go();"></body></html>