feat(webkit): roll to r2122 (#34180)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2025-01-01 21:16:46 -08:00 committed by GitHub
parent da52befea0
commit 546b7b702c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -27,7 +27,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "2121", "revision": "2122",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"debian11-x64": "2105", "debian11-x64": "2105",

View File

@ -6689,6 +6689,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
* Cookie Same-Site policy. * Cookie Same-Site policy.
*/ */
sameSite: CookieSameSitePolicy; sameSite: CookieSameSitePolicy;
/**
* Cookie partition key. If null and partitioned property is true, then key must be computed.
*/
partitionKey?: string;
} }
/** /**
* Accessibility Node * Accessibility Node
@ -7073,6 +7077,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
*/ */
export type setCookieParameters = { export type setCookieParameters = {
cookie: Cookie; cookie: Cookie;
/**
* If true, then cookie's partition key should be set.
*/
shouldPartition?: boolean;
} }
export type setCookieReturnValue = { export type setCookieReturnValue = {
} }