Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / websocket / permessage-deflate-split-frames.html
blob2ecde7b4a7c6c059553b706fc29df0e7d9d821ca
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="/js-test-resources/js-test.js"></script>
5 </head>
6 <body>
7 <script type="text/javascript">
8 description("Deflated message is split to multiple frames.");
10 window.jsTestIsAsync = true;
12 var ws = new WebSocket('ws://localhost:8880/permessage-deflate-split-frames');
13 ws.onopen = function()
15 ws.send('kick');
18 ws.onmessage = function(e)
20 debug('onmessage: ' + e.data);
23 ws.onclose = function(e)
25 debug('onclose');
26 finishJSTest();
29 </script>
30 </body>
31 </html>