docs(class-request.md): rephrase definition of request timing responseStart (#22170)

This commit is contained in:
Sébastien Richert 2023-04-05 16:11:38 -04:00 committed by GitHub
parent 789d8b24c0
commit 88544d537b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -284,7 +284,7 @@ Returns resource size information for given request.
to retrieve the resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
- `requestStart` <[float]> Time immediately before the browser starts requesting the resource from the server,
cache, or local resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
- `responseStart` <[float]> Time immediately after the browser starts requesting the resource from the server,
- `responseStart` <[float]> Time immediately after the browser receives the first byte of the response from the server,
cache, or local resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
- `responseEnd` <[float]> Time immediately after the browser receives the last byte of the resource or immediately
before the transport connection is closed, whichever comes first. The value is given in milliseconds relative to

View file

@ -17795,8 +17795,8 @@ export interface Request {
requestStart: number;
/**
* Time immediately after the browser starts requesting the resource from the server, cache, or local resource. The
* value is given in milliseconds relative to `startTime`, -1 if not available.
* Time immediately after the browser receives the first byte of the response from the server, cache, or local
* resource. The value is given in milliseconds relative to `startTime`, -1 if not available.
*/
responseStart: number;