Skip to content

Commit

Permalink
feat(webkit): roll to r2122 (microsoft#34180)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
playwrightmachine and github-actions[bot] authored Jan 2, 2025
1 parent da52bef commit 546b7b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
{
"name": "webkit",
"revision": "2121",
"revision": "2122",
"installByDefault": true,
"revisionOverrides": {
"debian11-x64": "2105",
Expand Down
8 changes: 8 additions & 0 deletions packages/playwright-core/src/server/webkit/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 = {
}
Expand Down

0 comments on commit 546b7b7

Please sign in to comment.