Index: LayoutTests/http/tests/websocket/tests/hybi/interleaved-fragments_wsh.py |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/interleaved-fragments_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/interleaved-fragments_wsh.py |
deleted file mode 100644 |
index a5daecaf25151e03d33dab15c9cf55460ef66dcd..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/interleaved-fragments_wsh.py |
+++ /dev/null |
@@ -1,12 +0,0 @@ |
-from mod_pywebsocket import common |
-from mod_pywebsocket import stream |
- |
- |
-def web_socket_do_extra_handshake(request): |
- pass |
- |
- |
-def web_socket_transfer_data(request): |
- # A new frame is arrived before the previous fragmented frame has finished. |
- request.connection.write(stream.create_text_frame('This message ', opcode=common.OPCODE_TEXT, fin=0)) |
- request.connection.write(stream.create_text_frame('should be ignored.', opcode=common.OPCODE_TEXT, fin=1)) # Not OPCODE_CONTINUATION. |