- From: Yoichi Osato <notifications@github.com>
- Date: Thu, 14 Nov 2019 15:05:31 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 14 November 2019 23:05:34 UTC
So removing `OPTIONS` and `TRACE` from `IsMethodSafe`, Chromium does 0RTT only for GET/HEAD: ``` cpp bool HttpUtil::IsMethodSafe(base::StringPiece method) { return method == "GET" || method == "HEAD"; } ``` Should we spec it only for `fetch()` or widely HTTP? I prefer only `fetch()` if we can easily distinguish it in `HttpNetworkTransaction` so far because of discussion/group scope(here!) instead of larger HTTP WG. -- 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/issues/538#issuecomment-554125227
Received on Thursday, 14 November 2019 23:05:34 UTC