Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
{
"name": "webkit",
"revision": "2322",
"revision": "2323",
"installByDefault": true,
"revisionOverrides": {
"mac14": "2251",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export const getBidiKeyValue = (keyName: string) => {
case 'Clear':
return '\uE005';
case 'Enter':
return '\uE006';
case 'NumpadEnter':
return '\uE007';
case 'Shift':
case 'ShiftLeft':
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 @@ -7165,6 +7165,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 for partitioned (CHIPS) cookies.
*/
partitionKey?: string;
}
/**
* Cookie object
Expand Down Expand Up @@ -7206,6 +7210,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 for partitioned (CHIPS) cookies.
*/
partitionKey?: string;
}
/**
* Name-value pair
Expand Down
1 change: 0 additions & 1 deletion tests/bidi/expectations/moz-firefox-nightly-page.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ page/page-history.spec.ts › goBack/goForward should work with bfcache-able pag
page/page-history.spec.ts › page.goBack should work for file urls [timeout]
page/page-history.spec.ts › regression test for issue 20791 [flaky]
page/page-keyboard.spec.ts › insertText should only emit input event [fail]
page/page-keyboard.spec.ts › should press Enter [fail]
page/page-keyboard.spec.ts › should press audio and media control keys [fail]
page/page-keyboard.spec.ts › should send a character with insertText [fail]
page/page-mouse.spec.ts › should always round down [fail]
Expand Down
Loading