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

Pass response body info through #176

Merged
merged 3 commits into from
Jun 17, 2022
Merged
Changes from 2 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
7 changes: 4 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -585,15 +585,16 @@ <h2>Creating a navigation timing entry</h2>

<p>To <dfn data-export="">create the navigation timing entry</dfn> for {{Document}} |document|,
given a [=fetch timing info=] |fetchTiming|, a number |redirectCount|, a
{{NavigationTimingType}} |navigationType|, and a null or [=service worker timing info=] |serviceWorkerTiming|,
do the following:
{{NavigationTimingType}} |navigationType|, a null or [=service worker timing info=] |serviceWorkerTiming|,
a DOMString |cacheMode|, and a [=fetch resource info=] |resourceInfo|, do the following:
<ol>
<li>Let |global| be |document|'s [=relevant global object=].</li>
<li>Let |navigationTimingEntry| be a new {{PerformanceNavigationTiming}} object in |global|'s
[=global object/realm=].
<li><a data-cite="RESOURCE-TIMING-2#dfn-setup-the-resource-timing-entry">Setup the resource
timing entry</a> for |navigationTimingEntry| given "<code>navigation</code>", |document|'s
<a data-cite="HTML#the-document's-address">address</a>, and |fetchTiming|.
<a data-cite="HTML#the-document's-address">address</a>, |fetchTiming|, |cacheMode|, and
|resourceInfo|.
<li>Set |navigationTimingEntry|'s <a data-for="PerformanceNavigationTiming">document load
timing</a> to |document|'s [=Document/load timing info=]
<li>Set |navigationTimingEntry|'s <a data-for="PerformanceNavigationTiming">previous
Expand Down