Skip to content

Commit

Permalink
Update marking of navigation timing to include Service Worker Timing
Browse files Browse the repository at this point in the history
Service Workers now expose a "service worker timing info" that
is associated with a request. HTML should pass it to Navigation Timing
together with the other info.

See also w3c/navigation-timing#143
and w3c/ServiceWorker#1575
  • Loading branch information
noamr committed Jun 24, 2021
1 parent 681c884 commit 7d4d8e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -2507,6 +2507,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
<li><dfn data-x="concept-internal-response" data-x-href="https://fetch.spec.whatwg.org/#concept-internal-response">internal response</dfn></li>
<li><dfn data-x="concept-response-location-url" data-x-href="https://fetch.spec.whatwg.org/#concept-response-location-url">location URL</dfn></li>
<li><dfn data-x="concept-response-timing-info" data-x-href="https://fetch.spec.whatwg.org/#concept-response-timing-info">timing info</dfn></li>
<li><dfn data-x="concept-response-service-worker-timing-info" data-x-href="https://fetch.spec.whatwg.org/#response-service-worker-timing-info">service worker timing info</dfn></li>
</ul>
</li>
<li>
Expand Down Expand Up @@ -86824,8 +86825,9 @@ interface <dfn interface>Location</dfn> { // but see also <a href="#the-location
<var>navigationParams</var>'s <span data-x="navigation-params-response">response</span>'s <span
data-x="concept-response-timing-info">timing info</span>, <var>navigationParams</var>'s <span
data-x="navigation-params-request">request</span>'s <span
data-x="concept-request-redirect-count">redirect count</span>, and
<var>navigationType</var>.</p></li>
data-x="concept-request-redirect-count">redirect count</span>, <var>navigationType</var>, and
<span data-x="navigation-params-response">response</span>'s <span
data-x="concept-response-service-worker-timing-info">service worker timing info</span>.</p></li>

<li>
<p>If <var>navigationParams</var>'s <span data-x="navigation-params-response">response</span>
Expand Down

0 comments on commit 7d4d8e8

Please sign in to comment.