Skip to content
Open
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
28 changes: 28 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,10 @@ <h3>
readonly attribute DOMHighResTimeStamp firstInterimResponseStart;
readonly attribute DOMHighResTimeStamp responseStart;
readonly attribute DOMHighResTimeStamp responseEnd;
readonly attribute DOMHighResTimeStamp workerRouterEvaluationStart;
readonly attribute DOMHighResTimeStamp workerCacheLookupStart;
readonly attribute DOMString workerMatchedRouterSource;
readonly attribute DOMString workerFinalRouterSource;
readonly attribute unsigned long long transferSize;
readonly attribute unsigned long long encodedBodySize;
readonly attribute unsigned long long decodedBodySize;
Expand Down Expand Up @@ -722,6 +726,30 @@ <h3>
info</a>'s [=fetch timing info/render-blocking=] is true; otherwise
<a data-link-for="RenderBlockingStatusType">non-blocking</a>.
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>workerRouterEvaluationStart</dfn> getter steps are to return
<a>this</a>'s <a data-for="PerformanceResourceTiming">timing info</a>'s
[=fetch timing info/service worker timing info=]'s
[=service worker timing info/worker router evaluation start=].
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>workerCacheLookupStart</dfn> getter steps are to return
<a>this</a>'s <a data-for="PerformanceResourceTiming">timing info</a>'s
[=fetch timing info/service worker timing info=]'s
[=service worker timing info/worker cache lookup start=].
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>workerMatchedRouterSource</dfn> getter steps are to return
<a>this</a>'s <a data-for="PerformanceResourceTiming">timing info</a>'s
[=fetch timing info/service worker timing info=]'s
[=service worker timing info/worker matched router source=].
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>workerFinalRouterSource</dfn> getter steps are to return
<a>this</a>'s <a data-for="PerformanceResourceTiming">timing info</a>'s
[=fetch timing info/service worker timing info=]'s
[=service worker timing info/worker final router source=].
</p>
<p class='note'>
A user agent implementing <a>PerformanceResourceTiming</a> would need
to include <code>"resource"</code> in
Expand Down
Loading