Index: LayoutTests/plugins/destroy-during-npp-new-object-with-fallback-content.html |
diff --git a/LayoutTests/plugins/destroy-during-npp-new-object-with-fallback-content.html b/LayoutTests/plugins/destroy-during-npp-new-object-with-fallback-content.html |
deleted file mode 100644 |
index dbd9fdc1ad61627c541cc430a471c34694dd83d9..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/destroy-during-npp-new-object-with-fallback-content.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> |
- <object id="testPlugin" type="application/x-webkit-test-netscape" width="200" height="200" cleardocumentduringnew>fallback content</object> |
-</body> |
-</html> |