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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/plugins/resources/third-party-cookie-accept-policy-iframe.html

Issue 1747713002: Remove http/tests/plugins/interrupted-get-url.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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 | « third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/plugins/resources/third-party-cookie-accept-policy-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/plugins/resources/third-party-cookie-accept-policy-iframe.html b/third_party/WebKit/LayoutTests/http/tests/plugins/resources/third-party-cookie-accept-policy-iframe.html
deleted file mode 100644
index c5703b1a3bec80d0c384fc391b8c71f9bddc85f7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/plugins/resources/third-party-cookie-accept-policy-iframe.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-<head>
-<script src="../../cookies/resources/resetCookies.js"></script>
-<script>
-resetCookies();
-
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-</script>
-<body>
-<embed id="plugin" type="application/x-webkit-test-netscape"></embed>
-<script>
-
-var plugin = document.getElementById("plugin");
-
-if (window.testRunner)
- testRunner.setAlwaysAcceptCookies(true);
-plugin.getURLNotify("http://localhost:8000/cookies/resources/cookie-utility.php?queryfunction=deleteCookies", null, "trySetCookie");
-
-function trySetCookie()
-{
- alert("Cookies should be clear, and are: '" + document.cookie + "'");
- alert("About to set a cookie, but on localhost instead of 127.0.0.1, which is our main document domain - This should fail.");
- if (window.testRunner)
- testRunner.setAlwaysAcceptCookies(false);
- plugin.getURLNotify("http://localhost:8000/cookies/resources/cookie-utility.php?queryfunction=setFooCookie", null, "completeTest");
-}
-
-function completeTest()
-{
- alert("Cookies should still be clear, and are: '" + document.cookie + "'");
- resetCookies();
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-</script>
-</body>
-</html>
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698