https://github.com/web-platform-tests/wpt
Raw File
Tip revision: feb7605d5a63e27fccc1b7684b7a5f8f21bc0cf3 authored by James Graham on 24 April 2014, 11:15:33 UTC
Stop using w3c-test.org for progress-events test
Tip revision: feb7605
Close-Reason-124Bytes.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Close WebSocket - Reason is more than 123 bytes long</title>
    <script type="text/javascript" src="/resources/testharness.js"></script>
    <script type="text/javascript" src="/resources/testharnessreport.js"></script>
    <script type="text/javascript" src="websocket.js?pipe=sub"></script>
</head>
<body>
    <div id="log"></div>
    <script type="text/javascript">

        var test = async_test("W3C WebSocket API - Create WebSocket - Close the Connection - close(code, 'reason more than 123 bytes') - SYNTAX_ERR is thrown");

        var wsocket = CreateWebSocket(false, false, false);
        var isOpenCalled = false;

        wsocket.addEventListener('open', test.step_func(function (evt) {
            var reason = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123";
            assert_equals(reason.length, 124);
            assert_throws("SYNTAX_ERR", function () { wsocket.close(1000, reason) });
            test.done();
        }), true);
    </script>

</body>
</html>
back to top