SharedWorker-create-common.js (390B)
1 // Make a SharedWorker that has the same external interface as a DedicatedWorker, to use in shared test code. 2 function createWorker() 3 { 4 var worker = new SharedWorker('support/SharedWorker-common.js', 'name'); 5 worker.port.onmessage = function(evt) { worker.onmessage(evt); }; 6 worker.postMessage = function(msg, port) { worker.port.postMessage(msg, port); }; 7 return worker; 8 }