feat(webkit): roll to 1507 (#7463)

This commit is contained in:
Max Schmitt 2021-07-05 12:49:31 +02:00 committed by GitHub
parent 02ff213d4d
commit 2231992d74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

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

View File

@ -7277,6 +7277,14 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
}
export type setDownloadBehaviorReturnValue = {
}
/**
* Cancels a current running download.
*/
export type cancelDownloadParameters = {
uuid: string;
}
export type cancelDownloadReturnValue = {
}
}
/**
@ -9014,6 +9022,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideParameters;
"Playwright.setLanguages": Playwright.setLanguagesParameters;
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters;
"Playwright.cancelDownload": Playwright.cancelDownloadParameters;
"Runtime.parse": Runtime.parseParameters;
"Runtime.evaluate": Runtime.evaluateParameters;
"Runtime.awaitPromise": Runtime.awaitPromiseParameters;
@ -9310,6 +9319,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideReturnValue;
"Playwright.setLanguages": Playwright.setLanguagesReturnValue;
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;
"Playwright.cancelDownload": Playwright.cancelDownloadReturnValue;
"Runtime.parse": Runtime.parseReturnValue;
"Runtime.evaluate": Runtime.evaluateReturnValue;
"Runtime.awaitPromise": Runtime.awaitPromiseReturnValue;