- From: Ben Kelly <notifications@github.com>
- Date: Tue, 17 Mar 2015 14:14:41 -0700
- To: slightlyoff/ServiceWorker <ServiceWorker@noreply.github.com>
Received on Tuesday, 17 March 2015 21:15:08 UTC
Right now it seems we support VARY:*,otherheader in step 9.5.1 here: https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#query-cache-algorithm Here we continue looking at further VARY header values to see if there is a conflict. In [RFC7231][], though, it states: The value consists of either a single asterisk ("*") or a list of header field names Further, gecko's network stack allowed VARY:*,otherheader, but immediately considers the Response a match if it sees a * value. (As opposed to continuing to look at other header values in SW spec.) What does blink do? Should we strictly match [RFC7231][]? Or if we want web compat, should we match what browsers (gecko at least) are doing today by treating * as an auto-match even if there are other VARY headers? @jakearchibald [RFC7231]: https://tools.ietf.org/html/rfc7231#section-7.1.4 --- Reply to this email directly or view it on GitHub: https://github.com/slightlyoff/ServiceWorker/issues/656
Received on Tuesday, 17 March 2015 21:15:08 UTC