https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f9da366fc15d35c95451db0ba03cad9b1c4ff80d authored by Domenic Denicola on 24 October 2016, 20:42:07 UTC
Also test the MessageEvent interface used
Tip revision: f9da366
Close-undefined.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Close WebSocket - Code is undefined</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();

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

        wsocket.addEventListener('open', test.step_func(function (evt) {
            wsocket.close(undefined);
            test.done();
        }), true);
    </script>

</body>
</html>
back to top