From 9ce9cdfdedbe5c2e66eca65f9353320eea304b4f Mon Sep 17 00:00:00 2001 From: "microsoft-playwright-automation[bot]" <203992400+microsoft-playwright-automation[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:45:33 +0000 Subject: [PATCH] feat(webkit): roll to r2216 --- packages/playwright-core/browsers.json | 2 +- .../src/server/webkit/protocol.d.ts | 48 ------------------- 2 files changed, 1 insertion(+), 49 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 2ba3bfaf35360..cd11414de3e4a 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -39,7 +39,7 @@ }, { "name": "webkit", - "revision": "2215", + "revision": "2216", "installByDefault": true, "revisionOverrides": { "debian11-x64": "2105", diff --git a/packages/playwright-core/src/server/webkit/protocol.d.ts b/packages/playwright-core/src/server/webkit/protocol.d.ts index 3b82ed2f8922c..52b7393007475 100644 --- a/packages/playwright-core/src/server/webkit/protocol.d.ts +++ b/packages/playwright-core/src/server/webkit/protocol.d.ts @@ -6689,50 +6689,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the */ frameId: Network.FrameId; } - /** - * Fired when frame has started loading. - */ - export type frameStartedLoadingPayload = { - /** - * Id of the frame that has started loading. - */ - frameId: Network.FrameId; - } - /** - * Fired when frame has stopped loading. - */ - export type frameStoppedLoadingPayload = { - /** - * Id of the frame that has stopped loading. - */ - frameId: Network.FrameId; - } - /** - * Fired when frame schedules a potential navigation. - */ - export type frameScheduledNavigationPayload = { - /** - * Id of the frame that has scheduled a navigation. - */ - frameId: Network.FrameId; - /** - * Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start. - */ - delay: number; - /** - * Whether the naviation will happen in the same frame. - */ - targetIsCurrentFrame: boolean; - } - /** - * Fired when frame no longer has a scheduled navigation. - */ - export type frameClearedScheduledNavigationPayload = { - /** - * Id of the frame that has cleared its scheduled navigation. - */ - frameId: Network.FrameId; - } /** * Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation. */ @@ -9207,10 +9163,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Page.frameNavigated": Page.frameNavigatedPayload; "Page.frameAttached": Page.frameAttachedPayload; "Page.frameDetached": Page.frameDetachedPayload; - "Page.frameStartedLoading": Page.frameStartedLoadingPayload; - "Page.frameStoppedLoading": Page.frameStoppedLoadingPayload; - "Page.frameScheduledNavigation": Page.frameScheduledNavigationPayload; - "Page.frameClearedScheduledNavigation": Page.frameClearedScheduledNavigationPayload; "Page.navigatedWithinDocument": Page.navigatedWithinDocumentPayload; "Page.defaultUserPreferencesDidChange": Page.defaultUserPreferencesDidChangePayload; "Page.willCheckNavigationPolicy": Page.willCheckNavigationPolicyPayload;