https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6ac2b05e7532e1cd050853ce35f9b620fe5b5100 authored by Philip Jägenstedt on 25 October 2016, 14:16:37 UTC
Test empty username and credential in RTCPeerConnection constructor
Tip revision: 6ac2b05
Secure-Close-undefined.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Close Secure 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(true, 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