https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3f22183d3bffb9754c54f97561ab38652779cdcf authored by Tim Dresser on 24 November 2017, 18:49:58 UTC
Deliver PerformanceEntries when the main thread is idle.
Tip revision: 3f22183
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