cherry-pick(release-1.15): feat(webkit): roll WebKit to 1550 (#9240)

This commit is contained in:
Andrey Lushnikov 2021-09-30 09:44:36 -07:00 committed by GitHub
parent 2dfc645e53
commit 83cfc2fd63
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": "1550",
"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;