chromium/third_party/blink/web_tests/http/tests/websocket/workers/resources/stall_wsh.py

# Copyright 2014 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.


def web_socket_do_extra_handshake(request):
    # Stall until the connection is closed.
    request.connection.read(4096)


def web_socket_transfer_data(request):
    pass