Index: third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html |
diff --git a/third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html b/third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html |
deleted file mode 100644 |
index ddd1b07077ba7d6d8846b12c62ea969bec6f1027..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-<head> |
-<script> |
-function MyCallback() { |
- |
-} |
- |
-function test() { |
- try { |
- |
- var plugin = window.frames["subframe"].document.plugins[0]; |
- plugin.getURL('javascript:parent.document.getElementById("d").innerHTML = "";', '_self'); |
- |
- } catch (ex) { |
- alert(ex); |
- } |
- |
- setTimeout(done, 10); |
-} |
- |
-function done() { |
- testRunner.dumpAsText(); |
- testRunner.notifyDone(); |
-} |
-</script> |
-</head> |
-<body onload="testRunner.waitUntilDone(); setTimeout(test, 10)"> |
-<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=14437">bug 14437</a>: |
-RTÉ video crashes Safari.</p> |
-<p>Only works with DumpRenderTree.</p> |
- |
-<div id='d'> |
- <iframe name='subframe' src='resources/plugin-remove-subframe-iframe.html'></iframe> |
-</div> |
-</body> |