Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / inserting-ordered-list-crash.html
blob86485e9736f086ec248cf6bc90a8eeb2dfe75e17
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <input>
5 <hr>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
11 document.designMode = 'on';
12 document.execCommand('SelectAll');
13 document.execCommand('Strikethrough');
14 document.execCommand('InsertOrderedList');
15 window.getSelection().deleteFromDocument();
16 document.execCommand('SelectAll');
17 document.execCommand('Strikethrough');
18 document.write('The test passes if the page does not crash.');
19 </script>
20 </body>
21 </html>