Skip to content

Commit d8b75e5

Browse files
feat(webkit): roll to r2221 (#37873)
1 parent eed1f19 commit d8b75e5

File tree

2 files changed

+1
-49
lines changed

2 files changed

+1
-49
lines changed

packages/playwright-core/browsers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
{
4141
"name": "webkit",
42-
"revision": "2215",
42+
"revision": "2221",
4343
"installByDefault": true,
4444
"revisionOverrides": {
4545
"debian11-x64": "2105",

packages/playwright-core/src/server/webkit/protocol.d.ts

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -6689,50 +6689,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
66896689
*/
66906690
frameId: Network.FrameId;
66916691
}
6692-
/**
6693-
* Fired when frame has started loading.
6694-
*/
6695-
export type frameStartedLoadingPayload = {
6696-
/**
6697-
* Id of the frame that has started loading.
6698-
*/
6699-
frameId: Network.FrameId;
6700-
}
6701-
/**
6702-
* Fired when frame has stopped loading.
6703-
*/
6704-
export type frameStoppedLoadingPayload = {
6705-
/**
6706-
* Id of the frame that has stopped loading.
6707-
*/
6708-
frameId: Network.FrameId;
6709-
}
6710-
/**
6711-
* Fired when frame schedules a potential navigation.
6712-
*/
6713-
export type frameScheduledNavigationPayload = {
6714-
/**
6715-
* Id of the frame that has scheduled a navigation.
6716-
*/
6717-
frameId: Network.FrameId;
6718-
/**
6719-
* Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.
6720-
*/
6721-
delay: number;
6722-
/**
6723-
* Whether the naviation will happen in the same frame.
6724-
*/
6725-
targetIsCurrentFrame: boolean;
6726-
}
6727-
/**
6728-
* Fired when frame no longer has a scheduled navigation.
6729-
*/
6730-
export type frameClearedScheduledNavigationPayload = {
6731-
/**
6732-
* Id of the frame that has cleared its scheduled navigation.
6733-
*/
6734-
frameId: Network.FrameId;
6735-
}
67366692
/**
67376693
* Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.
67386694
*/
@@ -9207,10 +9163,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
92079163
"Page.frameNavigated": Page.frameNavigatedPayload;
92089164
"Page.frameAttached": Page.frameAttachedPayload;
92099165
"Page.frameDetached": Page.frameDetachedPayload;
9210-
"Page.frameStartedLoading": Page.frameStartedLoadingPayload;
9211-
"Page.frameStoppedLoading": Page.frameStoppedLoadingPayload;
9212-
"Page.frameScheduledNavigation": Page.frameScheduledNavigationPayload;
9213-
"Page.frameClearedScheduledNavigation": Page.frameClearedScheduledNavigationPayload;
92149166
"Page.navigatedWithinDocument": Page.navigatedWithinDocumentPayload;
92159167
"Page.defaultUserPreferencesDidChange": Page.defaultUserPreferencesDidChangePayload;
92169168
"Page.willCheckNavigationPolicy": Page.willCheckNavigationPolicyPayload;

0 commit comments

Comments
 (0)