687295 - disable websockets deprecated deflate-stream extension due to thin vnc interop problem r=bz

This commit is contained in:
Patrick McManus 2011-09-20 17:04:57 -04:00
Родитель 926cacef5e
Коммит 132a8b4129
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -1067,7 +1067,7 @@ function test38()
{
ok(true, "test 38 open");
ok(ws.extensions != undefined, "extensions attribute defined");
ok(ws.extensions == "deflate-stream", "extensions attribute deflate-stream");
// ok(ws.extensions == "deflate-stream", "extensions attribute deflate-stream");
ws.close();
};

Просмотреть файл

@ -820,8 +820,10 @@ pref("network.websocket.timeout.ping.request", 0);
pref("network.websocket.timeout.ping.response", 10);
// Defines whether or not to try and negotiate the stream-deflate compression
// extension with the websocket server
pref("network.websocket.extensions.stream-deflate", true);
// extension with the websocket server. Stream-Deflate has been removed from
// the standards track document, but can still be used by servers who opt
// into it.
pref("network.websocket.extensions.stream-deflate", false);
// the maximum number of concurrent websocket sessions. By specification there
// is never more than one handshake oustanding to an individual host at