1
0
Fork 0
firefox/testing/web-platform/tests/websockets/Send-data.worker.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

26 lines
632 B
JavaScript

// 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();