Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using Chrome 17.0.963.46 m, I tried to create a new web worker from inside a web worker. But got a "Uncaught ReferenceError: Worker is not defined"

Any info. on this? (Google throw surprisingly few links on creating web worker inside webworkers)

share|improve this question

2 Answers

That is the current state even on Chrome 19 - here is the bug: http://code.google.com/p/chromium/issues/detail?id=31666 It's working on FF.

share|improve this answer

Creating workers within workers is not available in chrome. FF implemented this with the Example.

See the link for Example and Chroem bug.

https://developer.mozilla.org/en-US/docs/DOM/Worker/Functions_available_to_workers

https://developer.mozilla.org/en-US/docs/DOM/Using_web_workers?redirectlocale=en-US&redirectslug=Using_web_workers

Example specified by Mozilla Developer network.

https://developer.mozilla.org/samples/workers/fibonacci/

Chroem BUg

http://code.google.com/p/chromium/issues/detail?id=31666

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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