Skip to content

Commit

Permalink
feat(webkit): roll to 1507 (microsoft#7463)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Jul 5, 2021
1 parent 02ff213 commit 2231992
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1505",
"revision": "1507",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"
Expand Down
10 changes: 10 additions & 0 deletions src/server/webkit/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
}
}

/**
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 2231992

Please sign in to comment.