feat(webkit): roll to 1507 (#7463)
This commit is contained in:
parent
02ff213d4d
commit
2231992d74
|
|
@ -23,7 +23,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1505",
|
"revision": "1507",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446"
|
"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 = {
|
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.setGeolocationOverride": Playwright.setGeolocationOverrideParameters;
|
||||||
"Playwright.setLanguages": Playwright.setLanguagesParameters;
|
"Playwright.setLanguages": Playwright.setLanguagesParameters;
|
||||||
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters;
|
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters;
|
||||||
|
"Playwright.cancelDownload": Playwright.cancelDownloadParameters;
|
||||||
"Runtime.parse": Runtime.parseParameters;
|
"Runtime.parse": Runtime.parseParameters;
|
||||||
"Runtime.evaluate": Runtime.evaluateParameters;
|
"Runtime.evaluate": Runtime.evaluateParameters;
|
||||||
"Runtime.awaitPromise": Runtime.awaitPromiseParameters;
|
"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.setGeolocationOverride": Playwright.setGeolocationOverrideReturnValue;
|
||||||
"Playwright.setLanguages": Playwright.setLanguagesReturnValue;
|
"Playwright.setLanguages": Playwright.setLanguagesReturnValue;
|
||||||
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;
|
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;
|
||||||
|
"Playwright.cancelDownload": Playwright.cancelDownloadReturnValue;
|
||||||
"Runtime.parse": Runtime.parseReturnValue;
|
"Runtime.parse": Runtime.parseReturnValue;
|
||||||
"Runtime.evaluate": Runtime.evaluateReturnValue;
|
"Runtime.evaluate": Runtime.evaluateReturnValue;
|
||||||
"Runtime.awaitPromise": Runtime.awaitPromiseReturnValue;
|
"Runtime.awaitPromise": Runtime.awaitPromiseReturnValue;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue