https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 38a499047e6d71fa689f1f89205fc6c8f900142d authored by Anne van Kesteren on 11 April 2018, 10:54:54 UTC
XMLHttpRequest: align username/password test with the standard
Tip revision: 38a4990
Secure-Close-Reason-124Bytes.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Close Secure 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.sub.js"></script>
</head>
<body>
    <div id="log"></div>
    <script type="text/javascript">

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

        var wsocket = CreateWebSocket(true, 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