feat(webkit): roll to r1570 (#9954)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-11-02 09:32:00 +01:00 committed by GitHub
parent aac4edde80
commit 87174e9ed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1568",
"revision": "1570",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"

View File

@ -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;