Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / execCommand / format-block-crash.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>FormatBlock crash</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/345005.');
10
11 window.jsTestIsAsync = true;
12
13 window.addEventListener('message', didReceiveMessage, false);
14
15 var iframe = document.createElement('iframe');
16 iframe.src = 'resources/format-block-crash-iframe.html';
17 document.body.appendChild(iframe);
18
19 function didReceiveMessage(event)
20 {
21     shouldBeEqualToString('event.data', 'FINISH');
22     document.body.removeChild(iframe);
23     testPassed('Did not crash.');
24     window.finishJSTest();
25 }
26 </script>
27 </body>
28 </html>