https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1101ef63dcdfb3907438051240112a47a944f178 authored by Mike on 26 March 2018, 14:36:23 UTC
Fixed references to wrong reference tests
Tip revision: 1101ef6
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