https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e765504c37c15353fc699292c329d5fa20df82c7 authored by maxlg@chromium.org on 01 September 2017, 15:41:53 UTC
[PerformanceObserver] Support the "buffered" flag in PerformanceObserver
Tip revision: e765504
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