mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
39
dom/workers/test/websocket_basic_worker.js
Normal file
39
dom/workers/test/websocket_basic_worker.js
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
onmessage = function(event) {
|
||||
if (event.data != 0) {
|
||||
var worker = new Worker('websocket_basic_worker.js');
|
||||
worker.onmessage = function(event) {
|
||||
postMessage(event.data);
|
||||
}
|
||||
|
||||
worker.postMessage(event.data - 1);
|
||||
return;
|
||||
}
|
||||
|
||||
status = false;
|
||||
try {
|
||||
if ((WebSocket instanceof Object)) {
|
||||
status = true;
|
||||
}
|
||||
} catch(e) {
|
||||
}
|
||||
|
||||
postMessage({type: 'status', status: status, msg: 'WebSocket object:' + WebSocket});
|
||||
|
||||
var ws = new WebSocket("ws://mochi.test:8888/tests/dom/base/test/file_websocket_hello");
|
||||
ws.onopen = function(e) {
|
||||
postMessage({type: 'status', status: true, msg: 'OnOpen called' });
|
||||
ws.send("data");
|
||||
}
|
||||
|
||||
ws.onclose = function(e) {}
|
||||
|
||||
ws.onerror = function(e) {
|
||||
postMessage({type: 'status', status: false, msg: 'onerror called!'});
|
||||
}
|
||||
|
||||
ws.onmessage = function(e) {
|
||||
postMessage({type: 'status', status: e.data == 'Hello world!', msg: 'Wrong data'});
|
||||
ws.close();
|
||||
postMessage({type: 'finish' });
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue