I recently switched all my projects to ECMAScript 5 strict mode (i.e., add "use stricts"; at top of every JS file), however the following MDC example code works everywhere except on Chrome 11.
https://developer.mozilla.org/en/Using_web_workers#The_JavaScript_code
The code in web workers will invoke error
Uncaught ReferenceError: onmessage is not defined.
I tried to use var onmessage as a workaround, it would work in Chrome 11 but not in Firefox 4. I shouldn't be using var anyway coz AFAIK onmessage is a global variable just like window, redefining it makes no sense.
What should I do?