Skip to content

Commit

Permalink
feat(webkit): roll to r1932 (#27884)
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] committed Oct 31, 2023
1 parent 38a0921 commit 0c4de1f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 33 deletions.
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
{
"name": "webkit",
"revision": "1928",
"revision": "1932",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",
Expand Down
32 changes: 0 additions & 32 deletions packages/playwright-core/src/server/webkit/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
}
Expand Down Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -9467,15 +9439,13 @@ 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;
"Page.createUserWorld": Page.createUserWorldParameters;
"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;
Expand Down Expand Up @@ -9778,15 +9748,13 @@ 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;
"Page.createUserWorld": Page.createUserWorldReturnValue;
"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;
Expand Down

0 comments on commit 0c4de1f

Please sign in to comment.