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

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Alas WebKit's worker postMessage implementation doesn't currently serialise objects as it was written to an earlier version of the spec, and hasn't yet been updated to match the "final" version.

It's not actually JSON either -- it's the internal structured cloning algorithm in html5, which is more efficient (it doesn't need to convert to and from string) and actually somewhat richer than JSON, however no one currently implements that :-(

link|improve this answer
Interesting, so it sounds like its pretty much as I suspected. Given this, I have an app with two web workers, and they pass js objects around just fine now in >= fox 3.5, but not in Chrome. So how would I fix this? – Greg Miernicki Sep 24 '09 at 23:27
1  
Your best bet would be to add a small test to check to see whether postMessage serialises, and if it does not just do JSON.stringify and JSON.parse manually. It's best to do it this way so that it works on all webkit ports -- chrome is just another port of apple's webkit and you don't want to break all of the others (esp. Safari) – olliej Sep 25 '09 at 2:05
Sounds cool, I'll try this out next week when I get back from vacation :) – Greg Miernicki Sep 26 '09 at 3:09
feedback

Update: From Firefox 6.0 the message parameter is serialized using the structured clone algorithm. It seems to work in Chrome now as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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