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

Report ResourceTiming for object and embed #7554

Merged
merged 4 commits into from
Feb 27, 2022
Merged
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
24 changes: 17 additions & 7 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -31750,13 +31750,16 @@ interface <dfn interface>HTMLEmbedElement</dfn> : <span>HTMLElement</span> {
data-x="">include</code>", <span data-x="concept-request-mode">mode</span> is "<code
data-x="">navigate</code>", and whose <span>use-URL-credentials flag</span> is set.</p></li>

<li>
<p><span data-x="concept-fetch">Fetch</span> <var>request</var>.</p>

<p>Fetching the resource must <span>delay the load event</span> of <var>element</var>'s
<span>node document</span>.</p>
<li><p>Let <var>processResponseEndOfBody</var> given <span
data-x="concept-response">response</span> <var>res</var> be to <span>finalize and report
timing</span> with <var>res</var>, <var>element</var>'s <span>node document</span>'s
<span>relevant global object</span>, and "<code data-x="">embed</code>".</p></li>

<p>To <span>process response</span> for the <span data-x="concept-response">response</span>
<li>
<p><span data-x="concept-fetch">Fetch</span> <var>request</var>, with <i
data-x="processResponseEndOfBody">processResponseEndOfBody</i> set to
<var>processResponseEndOfBody</var>, and <i data-x="process response">processResponse</i> set
to the following steps given <span data-x="concept-response">response</span>
<var>response</var>:</p>

domenic marked this conversation as resolved.
Show resolved Hide resolved
<ol>
Expand Down Expand Up @@ -31820,6 +31823,9 @@ interface <dfn interface>HTMLEmbedElement</dfn> : <span>HTMLElement</span> {
</ol>
</li>
</ol>

<p>Fetching the resource must <span>delay the load event</span> of <var>element</var>'s
<span>node document</span>.</p>
</li>

<li>
Expand Down Expand Up @@ -32214,7 +32220,11 @@ interface <dfn interface>HTMLObjectElement</dfn> : <span>HTMLElement</span> {
data-x="">navigate</code>", and whose <span>use-URL-credentials flag</span> is set.</p></li>

<li>
<!--FETCH--><p><span data-x="concept-fetch">Fetch</span> <var>request</var>.</p>
<!--FETCH--><p><span data-x="concept-fetch">Fetch</span> <var>request</var>, with <i
data-x="processResponseEndOfBody">processResponseEndOfBody</i> given <span
data-x="concept-response">response</span> <var>res</var> set to <span>finalize and report
timing</span> with <var>res</var>, the element's <span>node document</span>'s
<span>relevant global object</span>, and "<code data-x="">object</code>".</p>

<!-- similar text in various places -->
<p>Fetching the resource must <span>delay the load event</span> of the element's <span>node
Expand Down