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

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
« no previous file with comments | « no previous file | LayoutTests/http/tests/websocket/permessage-deflate-split-frames-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("Deflated message is split to multiple frames.");
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');
26 finishJSTest();
27 };
28
29 </script>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/websocket/permessage-deflate-split-frames-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698