https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f2b9eafbc0e58118d53b37841d9e587f45924175 authored by Olli Pettay on 14 April 2018, 16:20:15 UTC
use smooth scrolling also for history navigations
Tip revision: f2b9eaf
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