v132 · performance
Resource timing: revert responseStart change and introduce firstResponseHeadersStart
Resource timing: - responseStart returns the first response, either early hints (interim) or final - Expose the final response headers (2xx/4xx/5xx) time as finalResponseHeadersStart.
concepts
-
firstResponseHeadersStart
Adds the new field, reverts the prior responseStart tweak.
-
early hints
The motivating 103-then-200 scenario as a tunable timeline; the two fields cleanly separate.
-
live timing anatomy
Fetch any URL; the page reads its
PerformanceResourceTimingentry and surfaces all 12 milestones (including the new v132firstResponseHeadersStart) on a live axis. -
Timing Waterfall
Four scenarios — simple HTTP, 103 Early Hints, 100 Continue, slow TTFB — rendered as a Resource Timing waterfall. See exactly where
firstInterimResponseStartand the revertedresponseStartland on each timeline.
why it shipped
With early hints (103), responses have two timestamps: - When the early hints arrive (103) - When the final headers arrive (e.g. 200)