Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add finalResponseHeadersStart which is always the 2xx/4xx/5xx response. #408

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ <h3>
readonly attribute DOMHighResTimeStamp connectEnd;
readonly attribute DOMHighResTimeStamp secureConnectionStart;
readonly attribute DOMHighResTimeStamp requestStart;
readonly attribute DOMHighResTimeStamp finalResponseHeadersStart;
readonly attribute DOMHighResTimeStamp firstInterimResponseStart;
readonly attribute DOMHighResTimeStamp responseStart;
readonly attribute DOMHighResTimeStamp responseEnd;
Expand Down Expand Up @@ -636,12 +637,17 @@ <h3>
global object</a> for <a>this</a>. See [=/HTTP fetch=] for more info.
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>responseStart</dfn> getter steps are to <a>convert fetch
The <dfn>finalResponseHeadersStart</dfn> getter steps are to <a>convert fetch
yoavweiss marked this conversation as resolved.
Show resolved Hide resolved
timestamp</a> for <a>this</a>'s <a data-for=
"PerformanceResourceTiming">timing info</a>'s [=fetch timing
info/final network-response start time=] and the <a>relevant global
object</a> for <a>this</a>. See [=/HTTP fetch=] for more info.
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>responseStart</dfn> getter steps are to return <a>this</a>'s
{{PerformanceResourceTiming/firstInterimResponseStart}} if it is not 0; Otherwise
<a>this</a>'s {{PerformanceResourceTiming/finalResponseHeadersStart}}.
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>responseEnd</dfn> getter steps are to <a>convert fetch
timestamp</a> for <a>this</a>'s <a data-for=
Expand Down Expand Up @@ -978,6 +984,7 @@ <h3>
{{PerformanceResourceTiming/connectEnd}},
{{PerformanceResourceTiming/requestStart}},
{{PerformanceResourceTiming/firstInterimResponseStart}},
{{PerformanceResourceTiming/finalResponseHeadersStart}},
{{PerformanceResourceTiming/responseStart}},
{{PerformanceResourceTiming/secureConnectionStart}},
{{PerformanceResourceTiming/transferSize}},
Expand Down
Loading