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

Add task source to queue a task #232

Merged
merged 2 commits into from
Sep 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
github: "https://github.com/w3c/resource-timing/",
caniuse: "resource-timing",
wgPatentURI: "https://www.w3.org/2004/01/pp-impl/45211/status",
xref: true,
xref: ["html", "hr-time-2", "performance-timeline-2"],
};
</script>
</head>
Expand Down Expand Up @@ -617,7 +617,7 @@ <h3>The <dfn>PerformanceResourceTiming</dfn> Interface</h3>
<li>If the user agent waits for full handshake completion to send the
request, this interval includes the full TLS handshake even if other
requests were sent using early data on this connection.</li>
</ul>
</ul>

<p class=note>Example: Suppose the user agent establishes an HTTP/2 connection
over TLS 1.3 to send a GET request and a POST request. It sends the ClientHello
Expand Down Expand Up @@ -890,7 +890,9 @@ <h3>Extensions to the <code>Performance</code> Interface</h3>
following substeps:
<ol style="list-style-type: lower-latin;">
<li>Set <a>resource timing buffer full event pending flag</a> to true.</li>
<li>Queue a task to run <a>fire a buffer full event</a>.</li>
<li><a>Queue a task</a> on the <a href=
"https://w3c.github.io/performance-timeline/#dfn-performance-timeline-task-source">performance
timeline task source</a> to run <a>fire a buffer full event</a>.</li>
</ol>
<li>Add <i>new entry</i> to the <a>resource timing secondary buffer</a>.</li>
<li>Increase <a>resource timing secondary buffer current size</a> by 1.</li>
Expand Down