vote up 15 vote down star
6

HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information:

" 'Gzip' is the gzip format, and 'deflate' is the zlib format. They should probably have called the second one 'zlib' instead to avoid confusion with the raw deflate compressed data format. While the HTTP 1.1 RFC 2616 correctly points to the zlib specification in RFC 1950 for the 'deflate' transfer encoding, there have been reports of servers and browsers that incorrectly produce or expect raw deflate data per the deflate specification in RFC 1951, most notably Microsoft. So even though the 'deflate' transfer encoding using the zlib format would be the more efficient approach (and in fact exactly what the zlib format was designed for), using the 'gzip' transfer encoding is probably more reliable due to an unfortunate choice of name on the part of the HTTP 1.1 authors." (source: http://www.gzip.org/zlib/zlib_faq.html)

So, my question: if I send RAW deflate data with NO zlib wrapper (or gzip, for that matter) are there any modern browsers (IE6 and up, FF, Chrome, Safari, etc) that can NOT understand the raw deflate compressed data (assuming Accept-Encoding included 'deflate')?

If all these browsers can successfully decode the data, what downsides are there to sending RAW deflate instead of zlib?

Here are the browsers that have been tested:

/*  Browser                       DEFLATE      ZLIB     */
    XP Internet Explorer 6        PASS         FAIL
    XP Internet Explorer 7        PASS         FAIL
    XP Internet Explorer 8        PASS         FAIL
    Vista Internet Explorer 8     PASS         FAIL
    XP Firefox 3.5.3              PASS         PASS
    XP Firefox 3.0.14             PASS         PASS
    Vista Firefox 3.5.3           PASS         PASS
    XP Safari 3                   PASS         PASS
    XP Safari 4                   PASS         PASS     
    XP Chrome 3.0.195.27          PASS         PASS
    XP Opera 9                    PASS         PASS
    XP Opera 10                   PASS         PASS
    XP Sea Monkey 1.1.8           PASS         PASS
    Android 1.6 Browser (v4)*     N/A          N/A
    OS-X Safari 4                 PASS         PASS
    iPhone 3.1 Safari             PASS         PASS

* Sends HTTP header "Accept-Encoding: gzip". Deflate not requested.


I conclude that we can always send raw DEFLATE (when the HTTP header "Accept-Encoding" contains "deflate") and the browser will be able to correctly interpret the encoded data. Am I wrong?

note: .NET's native implementation of DEFLATE (System.IO.Compression.DeflateStream) is raw DEFLATE. It also sucks. Please use zlib.net for all of your .NET deflating needs.



UPDATE:

I would like to add some mobile browsers (iphone, android, etc) to the list as well as Mac, Vista, Windows 7, Linux, etc.

If you would like to contribute to the list I've set up a test page here: http://www.eswd.com/test.aspx.

flag
Would you mind expanding on why System.IO.Compression.DeflateStream sucks compared to zlib.net? Google is not showing me much that's relevant except one person mentioning it "doesn't have particularly good compression ratio." – Joel Mueller Oct 18 at 5:30
Right, the compression ratio for both .net's gzip and deflate methods don't seem to be anywhere near what they should be. However, I haven't done any speed benchmarks between the two (zlib.net vs. native .net). – David Murdoch Oct 19 at 13:52
Why don’t you just log the results of your test case? – Gumbo Oct 22 at 21:44
@Gumbo: How can I do that? There is no way to know if the page renders correctly on the browser end, is there? I guess there may be an AJAX solution; but even then I may run into some cases where XMLHttpRequest doesn't work correctly. – David Murdoch Oct 23 at 13:22

2 Answers

vote up 1 vote down

The Android 1.6 browser (v4) fails both the zlib and the deflate test on your page. I've added it to your list.

link|flag
Thanks! What Content-Encoding does Android's browser send? – David Murdoch Oct 22 at 12:48
It sends 'Accept-Encoding: gzip'. – Josef Oct 22 at 21:10
Thanks again, I've updated your update. :-) – David Murdoch Oct 22 at 21:34
vote up 0 vote down

as far as i know, yes - pretty much you "can always send raw DEFLATE and everything would be okay"... there is not "always", but most of all cases. if not, this is the browser's problem.

link|flag
I'm trying to find the cases when raw deflate fails. According to spec it should fail is all browsers. – David Murdoch Oct 17 at 22:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.