https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d76d22c38009cfb499c5b39ff03242a0b3417af0 authored by Darren Shen on 04 April 2018, 10:55:28 UTC
[css-typed-om] Support animation and transition properties.
Tip revision: d76d22c
protocol_array_wsh.py
#!/usr/bin/python

from mod_pywebsocket import msgutil, util

def web_socket_do_extra_handshake(request):
    line = request.headers_in.get('Sec-WebSocket-Protocol')
    request.ws_protocol = line.split(',', 1)[0]

#pass

def web_socket_transfer_data(request):
    while True:
        msgutil.send_message(request, request.ws_protocol)
        return
back to top