Tagged Questions

6
votes
1answer
263 views

Memory leakage in Chrome using Shared Worker?

I have a web page that starts a HTML5 SharedWorker script. Chrome memory usage increases every time this page is reloaded (hitting F5). The worker script is very simple. Every second (using ...
3
votes
1answer
523 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 ...
1
vote
2answers
466 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
2answers
145 views

Chrome 11 complains about onmessage is not defined for worker.js in ECMAScript 5 strict mode

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. ...
0
votes
2answers
659 views

is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox?

I know its part of the HTML5 spec, but sometimes WebKit doesn't conform to the latest draft of the spec.