From 0c4de1f4ce869af86c99444550c1fcc207fc6b3a Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Tue, 31 Oct 2023 11:39:23 -0700 Subject: [PATCH] feat(webkit): roll to r1932 (#27884) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- packages/playwright-core/browsers.json | 2 +- .../src/server/webkit/protocol.d.ts | 32 ------------------- 2 files changed, 1 insertion(+), 33 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 8ea9248b03..7297323adb 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -39,7 +39,7 @@ }, { "name": "webkit", - "revision": "1928", + "revision": "1932", "installByDefault": true, "revisionOverrides": { "mac10.14": "1446", diff --git a/packages/playwright-core/src/server/webkit/protocol.d.ts b/packages/playwright-core/src/server/webkit/protocol.d.ts index a37b9f185c..213e6da54c 100644 --- a/packages/playwright-core/src/server/webkit/protocol.d.ts +++ b/packages/playwright-core/src/server/webkit/protocol.d.ts @@ -6933,10 +6933,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the * If `source` is provided (and not empty), it will be injected into all future global objects as soon as they're created. Omitting `source` will stop this from happening. */ source?: string; - /** - * Isolated world name to evaluate the script in. If not specified main world will be used. - */ - worldName?: string; } export type setBootstrapScriptReturnValue = { } @@ -7145,18 +7141,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the } export type insertTextReturnValue = { } - /** - * Set the current IME composition. - */ - export type setCompositionParameters = { - text: string; - selectionStart: number; - selectionLength: number; - replacementStart?: number; - replacementLength?: number; - } - export type setCompositionReturnValue = { - } /** * Serializes and returns all of the accessibility nodes of the page. */ @@ -7231,14 +7215,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the } export type setOrientationOverrideReturnValue = { } - export type setVisibleContentRectsParameters = { - unobscuredContentRect?: DOM.Rect; - contentInsets?: Insets; - obscuredInsets?: Insets; - unobscuredInsets?: Insets; - } - export type setVisibleContentRectsReturnValue = { - } /** * Ensures that the scroll regions are up to date. */ @@ -9043,10 +9019,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the workerId: string; url: string; name: string; - /** - * Id of the frame this worker belongs to. - */ - frameId: Network.FrameId; } export type workerTerminatedPayload = { workerId: string; @@ -9467,7 +9439,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Page.archive": Page.archiveParameters; "Page.setScreenSizeOverride": Page.setScreenSizeOverrideParameters; "Page.insertText": Page.insertTextParameters; - "Page.setComposition": Page.setCompositionParameters; "Page.accessibilitySnapshot": Page.accessibilitySnapshotParameters; "Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogParameters; "Page.setDefaultBackgroundColorOverride": Page.setDefaultBackgroundColorOverrideParameters; @@ -9475,7 +9446,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Page.setBypassCSP": Page.setBypassCSPParameters; "Page.crash": Page.crashParameters; "Page.setOrientationOverride": Page.setOrientationOverrideParameters; - "Page.setVisibleContentRects": Page.setVisibleContentRectsParameters; "Page.updateScrollingState": Page.updateScrollingStateParameters; "Playwright.enable": Playwright.enableParameters; "Playwright.disable": Playwright.disableParameters; @@ -9778,7 +9748,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Page.archive": Page.archiveReturnValue; "Page.setScreenSizeOverride": Page.setScreenSizeOverrideReturnValue; "Page.insertText": Page.insertTextReturnValue; - "Page.setComposition": Page.setCompositionReturnValue; "Page.accessibilitySnapshot": Page.accessibilitySnapshotReturnValue; "Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogReturnValue; "Page.setDefaultBackgroundColorOverride": Page.setDefaultBackgroundColorOverrideReturnValue; @@ -9786,7 +9755,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Page.setBypassCSP": Page.setBypassCSPReturnValue; "Page.crash": Page.crashReturnValue; "Page.setOrientationOverride": Page.setOrientationOverrideReturnValue; - "Page.setVisibleContentRects": Page.setVisibleContentRectsReturnValue; "Page.updateScrollingState": Page.updateScrollingStateReturnValue; "Playwright.enable": Playwright.enableReturnValue; "Playwright.disable": Playwright.disableReturnValue;