fune/dom/websocket/tests/webSocket_sharedWorker.js
Victor Porof 0a8ff0ad85 Bug 1561435 - Format dom/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35951

--HG--
extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
2019-07-05 10:44:55 +02:00

34 lines
708 B
JavaScript

onconnect = function(evt) {
var ws = new WebSocket(
"ws://mochi.test:8888/tests/dom/websocket/tests/file_websocket_hello"
);
ws.onopen = function(e) {
evt.ports[0].postMessage({
type: "status",
status: true,
msg: "OnOpen called",
});
ws.send("data");
};
ws.onclose = function(e) {};
ws.onerror = function(e) {
evt.ports[0].postMessage({
type: "status",
status: false,
msg: "onerror called!",
});
};
ws.onmessage = function(e) {
evt.ports[0].postMessage({
type: "status",
status: e.data == "Hello world!",
msg: "Wrong data",
});
ws.close();
evt.ports[0].postMessage({ type: "finish" });
};
};