feat(webkit): roll to r2122 (#34180)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
da52befea0
commit
546b7b702c
|
@ -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 New Issue