mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1570 (#9954)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
aac4edde80
commit
87174e9ed7
@ -23,7 +23,7 @@
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1568",
|
||||
"revision": "1570",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446"
|
||||
|
||||
@ -6840,6 +6840,18 @@ 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.
|
||||
*/
|
||||
@ -9068,6 +9080,7 @@ 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;
|
||||
@ -9369,6 +9382,7 @@ 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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user