author | Patrick McManus <mcmanus@ducksong.com> |
Thu, 01 Nov 2012 08:47:29 -0400 | |
changeset 112042 | 5326fc45fe46258527d4af488bccfca2852acff0 |
parent 112041 | ccf9a7c998139ffb456dd4ad2ee58c38bad6a60d |
child 112043 | d1b1ca54cb421b9566d683ec7a381a07a601b4ec |
push id | 23790 |
push user | ryanvm@gmail.com |
push date | Fri, 02 Nov 2012 01:26:40 +0000 |
treeherder | mozilla-central@556b9cfb269f [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | honzab |
bugs | 806200 |
milestone | 19.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/netwerk/protocol/http/nsHttpHandler.cpp +++ b/netwerk/protocol/http/nsHttpHandler.cpp @@ -400,16 +400,21 @@ nsHttpHandler::IsAcceptableEncoding(cons // HTTP 1.1 allows servers to send x-gzip and x-compress instead // of gzip and compress, for example. So, we'll always strip off // an "x-" prefix before matching the encoding to one we claim // to accept. if (!PL_strncasecmp(enc, "x-", 2)) enc += 2; + // gzip and deflate are inherently acceptable in modern HTTP - always + // process them if a stream converter can also be found. + if (!PL_strcasecmp(enc, "gzip") || !PL_strcasecmp(enc, "deflate")) + return true; + return nsHttp::FindToken(mAcceptEncodings.get(), enc, HTTP_LWS ",") != nullptr; } nsresult nsHttpHandler::GetStreamConverterService(nsIStreamConverterService **result) { if (!mStreamConvSvc) { nsresult rv;