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

Side by Side Diff: LayoutTests/http/tests/websocket/fragmented-frames_wsh.py

Issue 101143002: Remove hybi sub directory for WebSocket layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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
1 from mod_pywebsocket import msgutil 1 from mod_pywebsocket import msgutil
2 2
3 3
4 def web_socket_do_extra_handshake(request): 4 def web_socket_do_extra_handshake(request):
5 pass 5 pass
6 6
7 7
8 def web_socket_transfer_data(request): 8 def web_socket_transfer_data(request):
9 # send_message's third argument corresponds to "fin" bit; 9 # send_message's third argument corresponds to "fin" bit;
10 # it is set to True if this frame is the final fragment of a message. 10 # it is set to True if this frame is the final fragment of a message.
(...skipping 14 matching lines...) Expand all
25 msgutil.send_message(request, 'r', False) 25 msgutil.send_message(request, 'r', False)
26 msgutil.send_message(request, 'd', False) 26 msgutil.send_message(request, 'd', False)
27 msgutil.send_message(request, ' ', False) 27 msgutil.send_message(request, ' ', False)
28 msgutil.send_message(request, 'm', False) 28 msgutil.send_message(request, 'm', False)
29 msgutil.send_message(request, 'e', False) 29 msgutil.send_message(request, 'e', False)
30 msgutil.send_message(request, 's', False) 30 msgutil.send_message(request, 's', False)
31 msgutil.send_message(request, 's', False) 31 msgutil.send_message(request, 's', False)
32 msgutil.send_message(request, 'a', False) 32 msgutil.send_message(request, 'a', False)
33 msgutil.send_message(request, 'g', False) 33 msgutil.send_message(request, 'g', False)
34 msgutil.send_message(request, 'e', True) 34 msgutil.send_message(request, 'e', True)
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/websocket/fragmented-frames-expected.txt ('k') | LayoutTests/http/tests/websocket/frame-lengths.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698