Index: LayoutTests/plugins/npruntime/np-deallocate-called-before-np-shutdown.html |
diff --git a/LayoutTests/plugins/npruntime/np-deallocate-called-before-np-shutdown.html b/LayoutTests/plugins/npruntime/np-deallocate-called-before-np-shutdown.html |
deleted file mode 100644 |
index 4f25901c8d5422c5c7efe692699738da86c9053f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/npruntime/np-deallocate-called-before-np-shutdown.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<script> |
-function runTest() { |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
- var testObject = document.getElementById('plugin').testObject; |
- |
- // Remove the plugin. The plugin asserts that shutdown isn't called before |
- // any calls to NP_Deallocate, so this test will time out if that happens. |
- document.getElementById('container').innerHTML = ''; |
- document.getElementById('result').innerHTML = 'SUCCESS'; |
-} |
-</script> |
-<body onload="runTest()"> |
-<div id="container"> |
-<embed id="plugin" type="application/x-webkit-test-netscape" test="np-deallocate-called-before-np-shutdown" width=100 height=100></embed> |
-</div> |
-<div>This tests that the NP_Deallocate function of an NPObject isn't called before the NP_Shutdown function.</div> |
-<div id="result">FAILURE</div> |