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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/cookies/resources/third-party-cookie-relaxing-iframe.html

Issue 2125523003: Rename setAlwaysAcceptCookies to setBlockThirdPartyCookies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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: third_party/WebKit/LayoutTests/http/tests/cookies/resources/third-party-cookie-relaxing-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/cookies/resources/third-party-cookie-relaxing-iframe.html b/third_party/WebKit/LayoutTests/http/tests/cookies/resources/third-party-cookie-relaxing-iframe.html
index 1f2ca217136ec8e9f7a6826ef9ddb5249c631897..6a8ec676f67011c3c962e25bd663c74e206062f4 100644
--- a/third_party/WebKit/LayoutTests/http/tests/cookies/resources/third-party-cookie-relaxing-iframe.html
+++ b/third_party/WebKit/LayoutTests/http/tests/cookies/resources/third-party-cookie-relaxing-iframe.html
@@ -32,7 +32,7 @@ function sendXHR(queryCommand)
{
if (window.testRunner) {
// setAlwaysAcceptCookies() takes effect asynchronously (IPC is involved).
- testRunner.setAlwaysAcceptCookies(true);
+ testRunner.setBlockThirdPartyCookies(false);
}
var baseurl = "http://localhost:8000/cookies/resources/cookie-utility.php";
@@ -48,7 +48,7 @@ function sendXHR(queryCommand)
alert("xhr error");
if (window.testRunner) {
- testRunner.setAlwaysAcceptCookies(false);
+ testRunner.setBlockThirdPartyCookies(true);
}
parent.window.postMessage("done", "*");

Powered by Google App Engine
This is Rietveld 408576698