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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html

Issue 2102993002: Fix WebSocket to set first party for cookies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update testRunner calls to setBlockThirdPartyCookies() 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/websocket/cookie-ws-to-ws.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html b/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
index 74cd3304f204cc8c8e16a0f57626ef149cbbb22e..095712b4a2c06feacd2e80ac653bb706782ca9c9 100644
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
+++ b/third_party/WebKit/LayoutTests/http/tests/websocket/cookie-ws-to-ws.html
@@ -22,7 +22,7 @@ ws_set_cookie.onopen = function () {
ws_set_cookie.onclose = function (e) {
connectAndGetRequestHeader('cookie').then(function(value) {
cookie = normalizeCookie(value);
- shouldBeEqualToString('cookie', 'ws-domain-local-ip=1; ws-path-root=1; ws=1');
+ shouldBeEqualToString('cookie', 'same-site-lax=1; same-site-strict=1; ws-domain-local-ip=1; ws-path-root=1; ws=1');
clear();
}, finishAsFailed);
};

Powered by Google App Engine
This is Rietveld 408576698