feat(webkit): roll to r2122
This commit is contained in:
parent
b2cbe7f2ec
commit
0994dfa0fe
|
|
@ -27,7 +27,7 @@
|
|||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "2121",
|
||||
"revision": "2122",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"debian11-x64": "2105",
|
||||
|
|
|
|||
|
|
@ -6689,6 +6689,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||
* Cookie Same-Site policy.
|
||||
*/
|
||||
sameSite: CookieSameSitePolicy;
|
||||
/**
|
||||
* Cookie partition key. If null and partitioned property is true, then key must be computed.
|
||||
*/
|
||||
partitionKey?: string;
|
||||
}
|
||||
/**
|
||||
* 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 = {
|
||||
cookie: Cookie;
|
||||
/**
|
||||
* If true, then cookie's partition key should be set.
|
||||
*/
|
||||
shouldPartition?: boolean;
|
||||
}
|
||||
export type setCookieReturnValue = {
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue