feat(webkit): roll to r1548 (#8996)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-09-18 07:50:42 +02:00 committed by GitHub
parent b575c0e2e6
commit d61148c39a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

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

View File

@ -6515,6 +6515,17 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
}
export type overrideUserAgentReturnValue = {
}
/**
* Override's the navigator.platform of the inspected page
*/
export type overridePlatformParameters = {
/**
* Value to override the platform with. If this value is not provided, the override is removed. Overrides are removed when Web Inspector closes/disconnects.
*/
value?: string;
}
export type overridePlatformReturnValue = {
}
/**
* Allows the frontend to override the inspected page's settings.
*/
@ -9026,6 +9037,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.goForward": Page.goForwardParameters;
"Page.navigate": Page.navigateParameters;
"Page.overrideUserAgent": Page.overrideUserAgentParameters;
"Page.overridePlatform": Page.overridePlatformParameters;
"Page.overrideSetting": Page.overrideSettingParameters;
"Page.getCookies": Page.getCookiesParameters;
"Page.setCookie": Page.setCookieParameters;
@ -9326,6 +9338,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.goForward": Page.goForwardReturnValue;
"Page.navigate": Page.navigateReturnValue;
"Page.overrideUserAgent": Page.overrideUserAgentReturnValue;
"Page.overridePlatform": Page.overridePlatformReturnValue;
"Page.overrideSetting": Page.overrideSettingReturnValue;
"Page.getCookies": Page.getCookiesReturnValue;
"Page.setCookie": Page.setCookieReturnValue;