Tagged Questions
0
votes
0answers
26 views
Locale string comparison does not work properly in Firefox extension web worker
The localeCompare() function does not behave the same in a Firefox extension main code and in a web worker (or chrome worker).
For instance, in the main code, I have this code:
var array = ["École", ...
1
vote
1answer
31 views
Destroying WebWorkers
Is there a way to destroy HTML5 WebWorkers in JavaScript?
Here's my situation: I have a web application that generates a decent number of WebWorkers (anywhere between 16 and 32) to optimize some ...
1
vote
1answer
77 views
Spawning large numbers of WebWorkers in Chrome/Firefox
I'm writing a simple JavaScript application that generates a Mandlebrot set fractal in an HTML5 canvas element. The algorithm to generate the graphic is easily parallelizable, so I'm using WebWorkers ...
1
vote
1answer
170 views
use indexedDB inside web worker scope
I can not seem to figure out HOW to use indexedDB inside web worker. I've tried a lot of different ways, but indexedDB is always "undefined" in worker scope. I thought it was supposed to be accessible ...
0
votes
2answers
86 views
Web worker that works on Firefox throws strange error on google chrome
In my web worker I have a line where I set the onmessage handler like so:
onmessage = function() {/*...*/}
This works perfectly in Firefox, but in google chrome I get the following error:
Uncaught ...
2
votes
1answer
175 views
Is delegating JSON.parse to web worker worthwile (in Chrome Extension/FF Addon)?
I am writing a Chrome Extension which stores great deal of data in browser's localStorage and parses it on every page load. Now as the size of data increases, page load time/performance starts ...
0
votes
1answer
98 views
Adding a property to all web workers
I've created a Firefox extension which provides an openDb function to create an SQLite database in the profile folder. My function is working fine. But it doesn't work in
a web worker(HTML5), the ...
2
votes
2answers
607 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: ...
3
votes
1answer
2k 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
1answer
190 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):
...
2
votes
2answers
981 views
web workers not working in firefox 8, works in firefox 7
I am using library called arbor.js(beautified). It contains the following line of code,
i = new Worker(<path to arbor.js>);
At this point an error is thrown, and the following message is ...
3
votes
1answer
441 views
Can I use the Javascript 1.7+ iterators and generators inside a Firefox web worker?
Or how do I tell Firefox to parse a web worker extension with mimetype application/javascript;version=1.7?
Firebug 1.7a9 in Firefox 4 Beta 9 gives:
missing ; before statement
[Break On This Error] ...
1
vote
2answers
1k 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 ...
3
votes
1answer
642 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 ...
4
votes
2answers
650 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 ...