https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ffd8b73499f6099fb269344d81208743d1b9f54c authored by Hallvord R. M. Steen on 25 February 2016, 15:23:24 UTC
Reordering asserts to make failures easier to debug
Tip revision: ffd8b73
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