feat(webkit): roll to 1505 (#7421)

This commit is contained in:
Max Schmitt 2021-07-01 19:26:02 +02:00 committed by GitHub
parent b5d134d45b
commit dc1e5638bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View File

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

View File

@ -5714,6 +5714,21 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
*/ */
base64Encoded: boolean; base64Encoded: boolean;
} }
/**
* Returns content served for the given request. Will wait for the request to finish loading.
*/
export type getInterceptedResponseBodyParameters = {
/**
* Identifier of the intercepted network response's request.
*/
requestId: RequestId;
}
export type getInterceptedResponseBodyReturnValue = {
/**
* Base64 encoded response body.
*/
body: string;
}
/** /**
* Toggles whether the resource cache may be used when loading resources in the inspected page. If <code>true</code>, the resource cache will not be used when loading resources. * Toggles whether the resource cache may be used when loading resources in the inspected page. If <code>true</code>, the resource cache will not be used when loading resources.
*/ */
@ -8933,6 +8948,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Network.disable": Network.disableParameters; "Network.disable": Network.disableParameters;
"Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersParameters; "Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersParameters;
"Network.getResponseBody": Network.getResponseBodyParameters; "Network.getResponseBody": Network.getResponseBodyParameters;
"Network.getInterceptedResponseBody": Network.getInterceptedResponseBodyParameters;
"Network.setResourceCachingDisabled": Network.setResourceCachingDisabledParameters; "Network.setResourceCachingDisabled": Network.setResourceCachingDisabledParameters;
"Network.loadResource": Network.loadResourceParameters; "Network.loadResource": Network.loadResourceParameters;
"Network.getSerializedCertificate": Network.getSerializedCertificateParameters; "Network.getSerializedCertificate": Network.getSerializedCertificateParameters;
@ -9228,6 +9244,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Network.disable": Network.disableReturnValue; "Network.disable": Network.disableReturnValue;
"Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersReturnValue; "Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersReturnValue;
"Network.getResponseBody": Network.getResponseBodyReturnValue; "Network.getResponseBody": Network.getResponseBodyReturnValue;
"Network.getInterceptedResponseBody": Network.getInterceptedResponseBodyReturnValue;
"Network.setResourceCachingDisabled": Network.setResourceCachingDisabledReturnValue; "Network.setResourceCachingDisabled": Network.setResourceCachingDisabledReturnValue;
"Network.loadResource": Network.loadResourceReturnValue; "Network.loadResource": Network.loadResourceReturnValue;
"Network.getSerializedCertificate": Network.getSerializedCertificateReturnValue; "Network.getSerializedCertificate": Network.getSerializedCertificateReturnValue;