Tagged Questions

3
votes
1answer
376 views

How do I talk to Firebug from a Web Worker?

My web workers are becoming increasingly complicated and I'm sorely missing Firebug access while working with them. This: console.log("test"); Does not produce anything from a web worker. I've also ...
3
votes
1answer
532 views

Are Web Workers themselves allowed to have Web Worker threads?

This would seem to be the case in Firefox 3.5+, there I can instantiate a Web Worker, and inside the worker, spawn another thread. However, the code will not work in Google Chrome, leading me to ...
2
votes
2answers
37 views

Does a Firefox Workers limit exist?

Im trying to create web Workers and post messages to them in cycle: array.forEach(function (data) { this.createWorker(); this.workers[this.workersPointer].postMessage({task: ...
1
vote
2answers
525 views

HTML 5 Web Worker Example doesn't work in 8.0.552.231

I'm following this example at: http://www.whatwg.org/specs/web-workers/current-work/ page.html <!DOCTYPE HTML> <html> <head> <title>Worker example: One-core ...
0
votes
1answer
182 views

WebWorkers and WebSockets with Firefox

I'm trying to implement a working WebSocket connection within a WebWorker. That should be simple and it is if I use Chrome as b rowser. However, since this experiment should further become part of a ...
0
votes
0answers
61 views

Web workers not spawning sub workers in firefox 10

I've been trying to use web workers in Firefox 10. The example on the Mozilla site computes Fibonacci numbers (in this case, the 5th Fibonacci number - 5): ...