Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / insert-ordered-list-crash.html
blob70bfb23137a0034d939a9ba9acc8ed6f6a801311
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Issue 344280</title>
5 <script src="../../resources/js-test.js"></script>
6 </head>
7 <body>
8 <script>
9 description('Should not crash if we load a test case from crbug.com/344280.');
11 window.jsTestIsAsync = true;
13 window.addEventListener('message', didReceiveMessage, false);
15 var iframe = document.createElement('iframe');
16 iframe.src = 'resources/insert-ordered-list-crash-iframe.html';
17 document.body.appendChild(iframe);
19 function didReceiveMessage(event) {
20 shouldBeEqualToString('event.data', 'FINISH');
21 document.body.removeChild(iframe);
22 testPassed('Did not crash.');
23 window.finishJSTest();
25 </script>
26 </body>
27 </html>