Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: LayoutTests/http/tests/websocket/permessage-deflate-split-frames.html

Issue 314043002: [WebSocket] Add tests for permessage deflate split frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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("Response contains a header the value of which is empty.");
9
10 window.jsTestIsAsync = true;
11
12 var ws = new WebSocket('ws://localhost:8880/permessage-deflate-split-frames');
13 ws.onopen = function()
14 {
15 ws.send('kick');
16 };
17
18 ws.onmessage = function(e)
19 {
20 debug('onmessage: ' + e.data);
21 }
22
23 ws.onclose = function(e)
24 {
25 debug("onclose");
tyoshino (SeeGerritForStatus) 2014/06/05 05:49:44 use '
yhirano 2014/06/05 05:57:21 Done.
26 finishJSTest();
27 };
28
29 </script>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698