mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1932 (#27884)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
38a0921845
commit
0c4de1f4ce
@ -39,7 +39,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1928",
|
"revision": "1932",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
|||||||
@ -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.
|
* 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;
|
source?: string;
|
||||||
/**
|
|
||||||
* Isolated world name to evaluate the script in. If not specified main world will be used.
|
|
||||||
*/
|
|
||||||
worldName?: string;
|
|
||||||
}
|
}
|
||||||
export type setBootstrapScriptReturnValue = {
|
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 = {
|
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.
|
* 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 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.
|
* 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;
|
workerId: string;
|
||||||
url: string;
|
url: string;
|
||||||
name: string;
|
name: string;
|
||||||
/**
|
|
||||||
* Id of the frame this worker belongs to.
|
|
||||||
*/
|
|
||||||
frameId: Network.FrameId;
|
|
||||||
}
|
}
|
||||||
export type workerTerminatedPayload = {
|
export type workerTerminatedPayload = {
|
||||||
workerId: string;
|
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.archive": Page.archiveParameters;
|
||||||
"Page.setScreenSizeOverride": Page.setScreenSizeOverrideParameters;
|
"Page.setScreenSizeOverride": Page.setScreenSizeOverrideParameters;
|
||||||
"Page.insertText": Page.insertTextParameters;
|
"Page.insertText": Page.insertTextParameters;
|
||||||
"Page.setComposition": Page.setCompositionParameters;
|
|
||||||
"Page.accessibilitySnapshot": Page.accessibilitySnapshotParameters;
|
"Page.accessibilitySnapshot": Page.accessibilitySnapshotParameters;
|
||||||
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogParameters;
|
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogParameters;
|
||||||
"Page.setDefaultBackgroundColorOverride": Page.setDefaultBackgroundColorOverrideParameters;
|
"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.setBypassCSP": Page.setBypassCSPParameters;
|
||||||
"Page.crash": Page.crashParameters;
|
"Page.crash": Page.crashParameters;
|
||||||
"Page.setOrientationOverride": Page.setOrientationOverrideParameters;
|
"Page.setOrientationOverride": Page.setOrientationOverrideParameters;
|
||||||
"Page.setVisibleContentRects": Page.setVisibleContentRectsParameters;
|
|
||||||
"Page.updateScrollingState": Page.updateScrollingStateParameters;
|
"Page.updateScrollingState": Page.updateScrollingStateParameters;
|
||||||
"Playwright.enable": Playwright.enableParameters;
|
"Playwright.enable": Playwright.enableParameters;
|
||||||
"Playwright.disable": Playwright.disableParameters;
|
"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.archive": Page.archiveReturnValue;
|
||||||
"Page.setScreenSizeOverride": Page.setScreenSizeOverrideReturnValue;
|
"Page.setScreenSizeOverride": Page.setScreenSizeOverrideReturnValue;
|
||||||
"Page.insertText": Page.insertTextReturnValue;
|
"Page.insertText": Page.insertTextReturnValue;
|
||||||
"Page.setComposition": Page.setCompositionReturnValue;
|
|
||||||
"Page.accessibilitySnapshot": Page.accessibilitySnapshotReturnValue;
|
"Page.accessibilitySnapshot": Page.accessibilitySnapshotReturnValue;
|
||||||
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogReturnValue;
|
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogReturnValue;
|
||||||
"Page.setDefaultBackgroundColorOverride": Page.setDefaultBackgroundColorOverrideReturnValue;
|
"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.setBypassCSP": Page.setBypassCSPReturnValue;
|
||||||
"Page.crash": Page.crashReturnValue;
|
"Page.crash": Page.crashReturnValue;
|
||||||
"Page.setOrientationOverride": Page.setOrientationOverrideReturnValue;
|
"Page.setOrientationOverride": Page.setOrientationOverrideReturnValue;
|
||||||
"Page.setVisibleContentRects": Page.setVisibleContentRectsReturnValue;
|
|
||||||
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
|
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
|
||||||
"Playwright.enable": Playwright.enableReturnValue;
|
"Playwright.enable": Playwright.enableReturnValue;
|
||||||
"Playwright.disable": Playwright.disableReturnValue;
|
"Playwright.disable": Playwright.disableReturnValue;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user