Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / plugin-remove-subframe.html
blobddd1b07077ba7d6d8846b12c62ea969bec6f1027
1 <head>
2 <script>
3 function MyCallback() {
7 function test() {
8 try {
10 var plugin = window.frames["subframe"].document.plugins[0];
11 plugin.getURL('javascript:parent.document.getElementById("d").innerHTML = "";', '_self');
13 } catch (ex) {
14 alert(ex);
17 setTimeout(done, 10);
20 function done() {
21 testRunner.dumpAsText();
22 testRunner.notifyDone();
24 </script>
25 </head>
26 <body onload="testRunner.waitUntilDone(); setTimeout(test, 10)">
27 <p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=14437">bug 14437</a>:
28 RTÉ video crashes Safari.</p>
29 <p>Only works with DumpRenderTree.</p>
31 <div id='d'>
32 <iframe name='subframe' src='resources/plugin-remove-subframe-iframe.html'></iframe>
33 </div>
34 </body>