feat(webkit): roll to r2122

This commit is contained in:
github-actions 2024-12-31 12:04:02 +00:00
parent b2cbe7f2ec
commit 0994dfa0fe
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 = {
} }