Skip to content

Commit 55724b9

Browse files
authored
Add interim response times (#366)
* Add interim response times Add 3 response times: - firstInterimResponseStart: the first 103 - responseHeadersEnd: All headers have been received - responseBodyStart: The body started streaming Closes #345 Depends on whatwg/fetch#1483 * Remove unimplemented parts for now
1 parent 95c8d0b commit 55724b9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

‎index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ <h3>
367367
readonly attribute DOMHighResTimeStamp connectEnd;
368368
readonly attribute DOMHighResTimeStamp secureConnectionStart;
369369
readonly attribute DOMHighResTimeStamp requestStart;
370+
readonly attribute DOMHighResTimeStamp firstInterimResponseStart;
370371
readonly attribute DOMHighResTimeStamp responseStart;
371372
readonly attribute DOMHighResTimeStamp responseEnd;
372373
readonly attribute unsigned long long transferSize;
@@ -681,6 +682,13 @@ <h3>
681682
info/final network-request start time=] and the <a>relevant global
682683
object</a> for <a>this</a>. See [=/HTTP fetch=] for more info.
683684
</p>
685+
<p data-dfn-for="PerformanceResourceTiming">
686+
The <dfn>firstInterimResponseStart</dfn> getter steps are to <a>convert fetch
687+
timestamp</a> for <a>this</a>'s <a data-for=
688+
"PerformanceResourceTiming">timing info</a>'s [=fetch timing
689+
info/first interim network-response start time=] and the <a>relevant global
690+
object</a> for <a>this</a>. See [=/HTTP fetch=] for more info.
691+
</p>
684692
<p data-dfn-for="PerformanceResourceTiming">
685693
The <dfn>responseStart</dfn> getter steps are to <a>convert fetch
686694
timestamp</a> for <a>this</a>'s <a data-for=
@@ -1022,6 +1030,7 @@ <h3>
10221030
{{PerformanceResourceTiming/connectStart}},
10231031
{{PerformanceResourceTiming/connectEnd}},
10241032
{{PerformanceResourceTiming/requestStart}},
1033+
{{PerformanceResourceTiming/firstInterimResponseStart}},
10251034
{{PerformanceResourceTiming/responseStart}},
10261035
{{PerformanceResourceTiming/secureConnectionStart}},
10271036
{{PerformanceResourceTiming/transferSize}},

0 commit comments

Comments
 (0)