https://github.com/web-platform-tests/wpt
Revision 433d39e107e2f257dd97236d2ffa4f39a3739acf authored by Emilio Cobos Álvarez on 11 April 2018, 12:29:23 UTC, committed by Emilio Cobos Álvarez on 13 April 2018, 20:20:18 UTC
getComputedStyle returns styles in the node's document per the resolution in
https://github.com/w3c/csswg-drafts/issues/1548.
1 parent dc670d8
Raw File
Tip revision: 433d39e107e2f257dd97236d2ffa4f39a3739acf authored by Emilio Cobos Álvarez on 11 April 2018, 12:29:23 UTC
[cssom] Remove comment that now is invalid per CSSWG resolution.
Tip revision: 433d39e
Send-null.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Send null data - WebSocket</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 testOpen = async_test("W3C WebSocket API - Send null data on a WebSocket - Connection should be opened");
        var testMessage = async_test("W3C WebSocket API - Send null data on a WebSocket - Message should be received");
        var testClose = async_test("W3C WebSocket API - Send null data on a WebSocket - Connection should be closed");

        var data = null;
        var nullReturned = false;
        var wsocket = CreateWebSocket(false, false, false);
        var isOpenCalled = false;

        wsocket.addEventListener('open', testOpen.step_func(function (evt) {
            wsocket.send(data);
            isOpenCalled = true;
            testOpen.done();
        }), true);

        wsocket.addEventListener('message', testMessage.step_func(function (evt) {
            if ("null" == evt.data || "" == evt.data)
                nullReturned = true;
            assert_true(nullReturned);
            wsocket.close();
            testMessage.done();
        }), true);

        wsocket.addEventListener('close', testClose.step_func(function (evt) {
            assert_true(isOpenCalled, "WebSocket connection should be open");
            assert_equals(evt.wasClean, true, "wasClean should be true");
            testClose.done();
        }), true);
    </script>
</body>
</html>
back to top