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

Expose a filtered content-encoding value to resource timing #411

Open
wants to merge 7 commits into
base: gh-pages
Choose a base branch
from
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
45 changes: 43 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ <h3>
readonly attribute unsigned short responseStatus;
readonly attribute RenderBlockingStatusType renderBlockingStatus;
readonly attribute DOMString contentType;
readonly attribute DOMString contentEncoding;
[Default] object toJSON();
};
</pre>
Expand Down Expand Up @@ -667,8 +668,7 @@ <h3>
info</a>'s [=response body info/decoded size=].
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>transferSize</dfn> getter steps are to perform the following
steps:
The <dfn>transferSize</dfn> getter steps are the following:
</p>
<ol>
<li>
Expand Down Expand Up @@ -715,6 +715,47 @@ <h3>
<a data-for="PerformanceResourceTiming">resource info</a>'s
[=response body info/content type=].
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>contentEncoding</dfn> getter steps are the following:
</p>
<ol>
<li>
<p>
Let <i>codings</i> be <a>this</a>'s <a data-for=
"PerformanceResourceTiming">response body info</a>'s [=response
body info/content encoding=].
</p>
</li>
<li>
<p>
If <i>codings</i> is null, return the empty string.
</p>
</li>
<li>
<p>
If <i>codings</i> contains two strings or more, return
"<code>multiple</code>".
</p>
</li>
<li>
<p>
If <i>codings[0]</i> is the empty string, or it is supported by the user agent,
and is listed in the
<a href="https://www.iana.org/assignments/http-parameters/http-parameters.xhtml#content-coding">
content encoding registry on IANA</a>, return <i>codings[0]</i>.
</p>
<p class='note'>
"<code>identity</code>" is never supported as a coding. See details
<a href="https://www.rfc-editor.org/rfc/rfc9110.html#name-content-encoding">
here</a>.
</p>
</li>
<li>
<p>
Otherwise, return "<code>unknown</code>".
</p>
</li>
</ol>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>renderBlockingStatus</dfn> getter steps are to return
<a data-link-for="RenderBlockingStatusType">blocking</a> if
Expand Down
Loading