summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/Send-data.worker.js
blob: 5a8bdd5fa3a489fd107f84fc7801a224f9d9b853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// META: variant=?default
// META: variant=?wss
// META: variant=?wpt_flags=h2

importScripts("/resources/testharness.js");
importScripts('constants.sub.js')

var data = "test data";

async_test(function(t) {

    var wsocket = CreateWebSocket(false, false);

    wsocket.addEventListener('open', function (e) {
        wsocket.send(data)
    }, true)

    wsocket.addEventListener('message', t.step_func_done(function(e) {
            assert_equals(e.data, data);
    }), true);

    wsocket.addEventListener('close', t.unreached_func('the close event should not fire'), true);

}, "Send data on a WebSocket in a Worker")

done();