https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 49cbe8a9470283ecfeaa05ae7c1b9e638dfff8bd authored by Chris Nardi on 19 March 2018, 18:15:09 UTC
Test both parsing orders
Tip revision: 49cbe8a
handshake_no_protocol_wsh.py
#!/usr/bin/python

def web_socket_do_extra_handshake(request):
    # Trick pywebsocket into believing no subprotocol was requested.
    request.ws_requested_protocols = None

def web_socket_transfer_data(request):
    pass
back to top