Index: LayoutTests/plugins/get-url-with-javascript-destroying-plugin.html |
diff --git a/LayoutTests/plugins/get-url-with-javascript-destroying-plugin.html b/LayoutTests/plugins/get-url-with-javascript-destroying-plugin.html |
deleted file mode 100644 |
index ff07f530380ff70e7f67b50822ab7be7f93aee5f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/get-url-with-javascript-destroying-plugin.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<script> |
-function removePlugin() { |
- var plugin = document.getElementById('plugin'); |
- plugin.parentNode.removeChild(plugin); |
- |
- document.getElementById('console').innerText = 'SUCCESS'; |
- if (window.testRunner) |
- testRunner.notifyDone(); |
-} |
- |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
-} |
-</script> |
-<body> |
-<embed id="plugin" type="application/x-webkit-test-netscape" test="get-url-with-javascript-url-destroying-plugin" width=100 height=100></embed> |
-<p id="description">This tests that evaluating JS that calls NPN_GetURL to evaluate a javascript: URL that destroys the plugin doesn't crash.</p> |
-<div id="console">FAILURE</div> |