Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html

Issue 1319473007: Delete a bunch of NPAPI layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html
diff --git a/LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html b/LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html
deleted file mode 100644
index cb8444830cadcd260f802d3d9e9824b09acd89f6..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<html>
- <head>
- <script src="../resources/js-test.js"></script>
- </head>
- <body>
- <p id="description"></p>
- <div id="console"></div>
-
- <script>
- var destroyStreamCalled = false;
-
- function main() {
- if (!window.testRunner) {
- debug("This test can only run from within DumpRenderTree, because it requires TestNetscapePlugin.\n");
- return;
- }
- testRunner.waitUntilDone();
- }
-
- main();
-
- function streamStarted() {
- testFailed("TestNetscapePlugin should have returned an error from NewStream.");
- }
-
- function streamDestroyed() { destroyStreamCalled = true; }
-
- function requestCompleted() {
- shouldBeFalse("destroyStreamCalled");
-
- debug('<br><span class="pass">TEST COMPLETE</span>');
-
- testRunner.notifyDone();
- }
- </script>
-
- <embed
- type="application/x-webkit-test-netscape"
- onStreamLoad="streamStarted()"
- onStreamDestroy="streamDestroyed"
- onURLNotify="requestCompleted()"
- id="plugin">
- </body>
- <script>
- description("This tests that NPP_DestroyStream is not called if a plugin returns an error from its NPP_NewStream callback.");
-
- var plugin = document.getElementById("plugin");
-
- plugin.returnErrorFromNewStream = true;
- shouldBeTrue("plugin.returnErrorFromNewStream");
-
- plugin.getURLNotify("data:,", null, "callback");
- </script>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698