In the following :
<html>
<head>
<title>Worker</title>
</head>
<body>
</body>
<script >
var w = new Worker ('worker.js');
w.onmessage = function (e) {
document.body.innerHTML += '<br>' + 'WORKER : ' + e.data;
};
</script>
<script src='worker.js'></script>
</html>
worker.js is invoked both as a script and as a worker.
worker.js contains :
var msg = 'postMessage is ' + postMessage.toString () +
', self.constructor is ' + self.constructor;
try {
postMessage (msg);
} catch (e) {
document.body.innerHTML += '<br>SCRIPT : ' + msg;
}
In the worker environment, the postMessage succeeds, in the script environment it fails because either it is undefined or, in a browser, it requires a second argument.
Output is :
chrome :
SCRIPT : postMessage is function () { [native code] }, self.constructor is function DOMWindow() { [native code] }
WORKER : postMessage is function postMessage() { [native code] }, self.constructor is function DedicatedWorkerContext() { [native code] }
firefox :
SCRIPT : postMessage is function postMessage() { [native code] }, self.constructor is [object Window]
WORKER : postMessage is function postMessage() { [native code] }, self.constructor is function DedicatedWorkerGlobalScope() { [native code] }
opera:
WORKER : postMessage is function postMessage() { [native code] }, self.constructor is function Object() { [native code] }
SCRIPT : postMessage is function postMessage() { [native code] }, self.constructor is function Object() { [native code] }
All under Ubuntu.
windowis not defined in a worker script (i.e.typeof window === "undefined" ? worker : normal). I'm not entirely sure though. – pimvdb Dec 15 '11 at 16:16postMessageis the thing to check existence of. – pimvdb Dec 16 '11 at 9:31window.postMesageis perfectly valid and is used to communicate with cross-domain windows as well as workers. I'll go with checking forwindowfor now as I'm not planning to use nodejs any time soon ;) – Graham Dec 16 '11 at 11:19postMessageis of course available in the parent script as well. – pimvdb Dec 16 '11 at 11:20