Re: [whatwg/fetch] Header value definition needs work (#332)

I started creating tests to sort this out since it's a rather longstanding issue. My first attempt was to pass all bytes through `setRequestHeader()` and `new Headers()`.

Firefox fails for 0x00 in the former and for 0x00, 0x0A, and 0x0D in the latter. I filed https://bugzilla.mozilla.org/show_bug.cgi?id=1330297 on that since it seems silly.

Chrome consistently fails for 0x00, 0x0A, and 0x0D.

Safari TP consistently fails for 0x00-0x1F and 0x7F.

I guess next is testing what actually arrives at the server.

-- 
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/332#issuecomment-271869148

Received on Wednesday, 11 January 2017 13:33:33 UTC