mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
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",
|
"name": "webkit",
|
||||||
"revision": "2121",
|
"revision": "2122",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"debian11-x64": "2105",
|
"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.
|
* 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 = {
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user