This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Blob response entity body is specified to be built from the response entity body. > 2. Return a Blob object representing the response entity body. Shouldn't this algorithm also take final MIME type and final charset? Current behavior of browsers: Both Firefox (28.0) and Chrome (32) copy the MIME type of the received response to the Blob, but not charset.
Yeah it should. I guess I forgot Blob was more than bytes.
https://github.com/whatwg/xhr/commit/621fe98f9ff2d29626747b7b10ce1580b473f61f
(In reply to Anne from comment #2) > https://github.com/whatwg/xhr/commit/621fe98f9ff2d29626747b7b10ce1580b473f61f Thanks. Verified. As I said in comment #0, charset is not copied now. Current spec matches with them, but how do you think it should be? Also copying charset might be useful.
I thought Blob.prototype.type did not include the charset parameter.