mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to 1507 (#7463)
This commit is contained in:
parent
02ff213d4d
commit
2231992d74
@ -23,7 +23,7 @@
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1505",
|
||||
"revision": "1507",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446"
|
||||
|
||||
10
src/server/webkit/protocol.d.ts
vendored
10
src/server/webkit/protocol.d.ts
vendored
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user