- From: Yoav Weiss <notifications@github.com>
- Date: Thu, 04 Mar 2021 04:00:28 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
- Message-ID: <whatwg/fetch/pull/1185/review/604022773@github.com>
@yoavweiss commented on this pull request. > + <dt><dfn for="fetch timing info">connection timing info</dfn> (default null) + <dd>A <a for=/>connection timing info</a>. +</dl> + +<p>A <dfn>connection timing info</dfn> is a <a for=/>struct</a> used to maintain timing information +pertaining to the process of obtaining a connection. It has the following <a for=struct>items</a>: +<dl> + <dt><dfn for="connection timing info">domain lookup start time</dfn> (default zero) + <dd>A <a for=/>DOMHighResTimeStamp</a> + <dt><dfn for="connection timing info">domain lookup end time</dfn> (default zero) + <dd>A <a for=/>DOMHighResTimeStamp</a> + <dt><dfn for="connection timing info">connection start time</dfn> (default zero) + <dd>A <a for=/>DOMHighResTimeStamp</a> + <dt><dfn for="connection timing info">connection end time</dfn> (default zero) + <dd>A <a for=/>DOMHighResTimeStamp</a> + <dt><dfn for="connection timing info">secure connection start time</dfn> (default zero) Looking deeper, in Chromium it exposes a different timer than connectStart: https://source.chromium.org/chromium/chromium/src/+/master:third_party/blink/renderer/core/timing/performance_resource_timing.cc;l=314?q=secureConnectionStart%20f:.cc&ss=chromium I think we need to take a look at what implementations are doing and align the spec to that. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/fetch/pull/1185#discussion_r587411503
Received on Thursday, 4 March 2021 12:00:50 UTC