Open annevk opened 3 years ago
Unfortunately, removing old behavior here is now pretty resource intensive, in terms of launch process in Chrome:
As I'm not longer on the network team, I have limited time to work on this sort of stuff. That having been said, I certainly support adding tests and working towards both tighter parsing and unifying behavior here, and I can probably find time to address what I view as most concerning (which, here, is status code handling/overflow).
@kinu @yutakahirano: Kinuko, Yutaka, would your team be interested in pursuing this?
Another fun one: Chrome allows 4 bytes of random slop between requests, before the start of headers. I believe this was copied from FireFox of IE's behavior at the time. I don't believe all browsers currently do this, so it may be easier to remove. My main concern is servers sending 0-length compressed gzip bodies with "Content-Length: 0", which aren't actually of length 0. In this case, there's slop on the end, which I suspect this logic deals with.
Several other differences I discovered:
header-name
and :
, e.g., x-frame-options : DENY
:
fetch
, it seems to be sometimes different to top-level, or subresource parsingA couple thoughts (note that I'm no longer on Chrome's network team, though still care about this area).
Several other differences I discovered:
- Space (or tab) between
header-name
and:
, e.g.,x-frame-options : DENY
:
- HTTP spec says that servers MUST reject such responses and proxies must remove such whitespace. It does not say what clients should do.
It would seem very weird if proxies remove it, but clients were expected to reject it. Then some sites would only work with a compliant browser connecting through a compliant proxy, but not with a compliant browser directly making the requests.
- NULL bytes in header names
- NULL in header values
Chrome currently rejects responses with NULLs anywhere in the headers (including in status text). Not claiming this is the correct behavior.
Other weirdness that may be worth thinking about, if you haven't already. Only know how Chrome handles these:
HTTP/1 was poorly tested for error handling and as a result implementations are not interoperable. This lack of interoperability reaches Fetch at times. Where HTTP/1 itself takes no stance or implementations cannot follow it, it might make sense to document it in Fetch or at least document it in this issue.
Content-Type
andContent-Length
: https://github.com/whatwg/fetch/issues/814cc @whatwg/http
(Previously there was https://wiki.whatwg.org/wiki/HTTP.)