Index: LayoutTests/plugins/destroy-during-npp-new.html |
diff --git a/LayoutTests/plugins/destroy-during-npp-new.html b/LayoutTests/plugins/destroy-during-npp-new.html |
deleted file mode 100644 |
index aa448cc2c8560765d06ca9cbeda7c470fa50fb98..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/destroy-during-npp-new.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<html> |
-<head> |
- <script type="text/javascript"> |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.setCanOpenWindows(); |
- testRunner.waitUntilDone(); |
- } |
- |
- var newWindow = window.open("data:text/html,Hello world!") |
- |
- function tryCloseWindow(w) { |
- if (!w) |
- return; |
- |
- w.close(); |
- |
- function doneIfClosed() { |
- if (w.closed) { |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- return; |
- } |
- setTimeout(doneIfClosed, 1); |
- }; |
- doneIfClosed(); |
- } |
- |
- window.onload = function() { |
- tryCloseWindow(newWindow); |
- |
- var testPlugin = document.getElementById('testPlugin'); |
- if (!testPlugin || !testPlugin.parentNode) |
- document.documentElement.appendChild(document.createTextNode("SUCCESS")); |
- } |
- </script> |
-</head> |
-<body> |
- <p>This tests a plugin that removes itself from the document during NPP_New. It passes if it does not crash during removal (<a href="rdar://problem/6954546"><rdar://problem/6954546></a>) or when a window is next closed (<a href="rdar://problem/7090444"><rdar://problem/7090444></a>).</p> |
- <embed id="testPlugin" type="application/x-webkit-test-netscape" width="200" height="200" cleardocumentduringnew></embed> |
-</body> |
-</html> |