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?

link|improve this question

75% accept rate
Could you please provide some code? It will be difficult to guess without a sample – Mamsaac May 3 '11 at 9:45
feedback

2 Answers

up vote 0 down vote accepted

You shouldn't switch to strict mode if you don't know what it means. For one, you can't specify implicit global variables, which is your problem. Specify self.onmessage.

link|improve this answer
Thanks! That's what I ended up using. But if it's about I should not use implicit global variables, why doesn't strict mode also throw error at postMessage()? – timdream May 6 '11 at 8:18
You can use global variables all you want, you just can't specify / define them implicitly. – Eli Grey May 6 '11 at 21:02
I see. If so, I am kind of curious on the different behavior of browsers. Is it a bug that should be corrected? – timdream May 7 '11 at 16:29
feedback

Then Chrome 11 is the only one who is working as the ES5 is expecting it. See https://developer.mozilla.org/en/JavaScript/Strict_mode#Simplifying_variable_uses

You have two possibilities:

var onmessage = function(...

or

function onmessage(...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.