Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / window-open-insert-list-crash.html
blob10c71161984b96fae74dcbb987b815ab9776c26e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Crash issue 338542</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/338542.');
11 window.jsTestIsAsync = true;
13 window.addEventListener('message', didReceiveMessage, false);
15 var iframe = document.createElement('iframe');
16 iframe.src = 'resources/window-open-insert-list-crash-iframe.html';
17 document.body.appendChild(iframe);
19 function didReceiveMessage(event)
21 if (iframe === null)
22 return;
23 shouldBeEqualToString('event.data', 'FINISH');
24 document.body.removeChild(iframe);
25 iframe = null;
26 testPassed('Did not crash.');
27 window.finishJSTest();
29 </script>
30 </body>
31 </html>