Comment #6 on issue 31666 by chunronglai: HTML5 nested workers are not supported in chromium
http://code.google.com/p/chromium/issues/detail?id=31666

I understand that the nested workers are the main problem. Thanks.
Besides that I think Chromium also leads to confusion in parameter passing.
Say, if I change the worker scripts to a non-nested

onmessage = function(event) {
  var n = event.data;
  postMessage(n+10);
};

Firefox can returns 20 for the URL, but Chromium only returns 1010?
I wonder if Chromium just regards the parameter as a string?

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
-- 
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs

Reply via email to