mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(firefox): roll to r1312 (#11124)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
This commit is contained in:
parent
450c8086b9
commit
d43f78f384
@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox",
|
"name": "firefox",
|
||||||
"revision": "1311",
|
"revision": "1312",
|
||||||
"installByDefault": true
|
"installByDefault": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -131,7 +131,8 @@ export class FFNetworkManager {
|
|||||||
this._requests.delete(request._id);
|
this._requests.delete(request._id);
|
||||||
response._requestFinished(responseEndTime);
|
response._requestFinished(responseEndTime);
|
||||||
}
|
}
|
||||||
response._setHttpVersion(event.protocolVersion);
|
if (event.protocolVersion)
|
||||||
|
response._setHttpVersion(event.protocolVersion);
|
||||||
this._page._frameManager.reportRequestFinished(request.request, response);
|
this._page._frameManager.reportRequestFinished(request.request, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -901,7 +901,7 @@ export module Protocol {
|
|||||||
responseEndTime: number;
|
responseEndTime: number;
|
||||||
transferSize: number;
|
transferSize: number;
|
||||||
encodedBodySize: number;
|
encodedBodySize: number;
|
||||||
protocolVersion: string;
|
protocolVersion?: string;
|
||||||
}
|
}
|
||||||
export type requestFailedPayload = {
|
export type requestFailedPayload = {
|
||||||
requestId: string;
|
requestId: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user