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 http method to ResourceTiming interface #375

Open
wants to merge 1 commit 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
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ <h3>
readonly attribute DOMString initiatorType;
readonly attribute DOMString deliveryType;
readonly attribute ByteString nextHopProtocol;
readonly attribute ByteString httpMethod;
readonly attribute DOMHighResTimeStamp workerStart;
readonly attribute DOMHighResTimeStamp redirectStart;
readonly attribute DOMHighResTimeStamp redirectEnd;
Expand Down Expand Up @@ -398,6 +399,10 @@ <h3>
(the empty string, "<code>local</code>", or
"<code>validated</code>").
</p>
<p>
A <a>PerformanceResourceTiming</a> has an associated ByteString
<a data-dfn-for="PerformanceResourceTiming"><dfn>http method</dfn></a>
</p>
<p>
A <a>PerformanceResourceTiming</a> has an associated [=fetch timing
info=] <a data-dfn-for="PerformanceResourceTiming"><dfn>timing
Expand Down Expand Up @@ -737,6 +742,11 @@ <h3>
</p>
</li>
</ol>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>httpMethod</dfn> getter steps are to return
<a>this</a>'s <a data-cite="FETCH#concept-method-normalize">normalized</a>
<a data-for="PerformanceResourceTiming">http method</a>.
</p>
<p data-dfn-for="PerformanceResourceTiming">
The <dfn>responseStatus</dfn> getter steps are to return
<a>this</a>'s <a data-for="PerformanceResourceTiming">response
Expand Down