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

Unified Diff: LayoutTests/plugins/get-file-url.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
« no previous file with comments | « LayoutTests/plugins/get-empty-url-expected.txt ('k') | LayoutTests/plugins/get-file-url-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/plugins/get-file-url.html
diff --git a/LayoutTests/plugins/get-file-url.html b/LayoutTests/plugins/get-file-url.html
deleted file mode 100644
index 74195a83873dcba8bfc80f014202f996c7d95e96..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/get-file-url.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-<body>
-<embed id="plg" type="application/x-webkit-test-netscape"></embed><P>
-
-This tests that file URLs can embed plugins which can successfully
-load other File URLs from the Plugin. (Via the NPN_GetURL API)
-
-<div id="result">FAILED</div>
-<iframe name="output">Output Goes Here</iframe>
-
-<script>
-function CheckForFinished() {
- if (window.subframe_done == 1) {
- var result = document.getElementById("result");
- result.innerHTML = "SUCCESS";
- if (testRunner) {
- testRunner.notifyDone();
- }
- } else {
- setTimeout(CheckForFinished, 10);
- }
-}
-
-function runtest() {
- window.subframe_done = 0;
- var loc = window.location.toString();
- var subfile = loc.replace(/get-file-url.html/,"resources/get-file-url-subframe.html");
- var plg = document.getElementById("plg");
- plg.getURL(subfile, "output");
- setTimeout(CheckForFinished, 10);
-}
-
-if (testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-runtest();
-</script>
-</body>
-</html>
-
« no previous file with comments | « LayoutTests/plugins/get-empty-url-expected.txt ('k') | LayoutTests/plugins/get-file-url-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698