mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Add SameSite (same_site) and Priority attributes to CefCookie (fixes issue #2524)
This change also restores the Chromium default values for the SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure features. See https://www.chromium.org/updates/same-site for feature details and rollout timeline.
This commit is contained in:
committed by
Marshall Greenblatt
parent
cbc0625272
commit
be6af15754
@@ -475,10 +475,7 @@ void VerifyNormalRequest(const RequestRunSettings* settings,
|
||||
has_send_cookie = true;
|
||||
}
|
||||
|
||||
if (settings->expect_send_cookie)
|
||||
EXPECT_TRUE(has_send_cookie);
|
||||
else
|
||||
EXPECT_FALSE(has_send_cookie);
|
||||
EXPECT_EQ(settings->expect_send_cookie, has_send_cookie);
|
||||
}
|
||||
|
||||
// Populate normal response contents.
|
||||
|
Reference in New Issue
Block a user