- From: <bugzilla@jessica.w3.org>
- Date: Wed, 04 Jul 2012 07:32:49 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=16952 --- Comment #10 from Simon Pieters <simonp@opera.com> 2012-07-04 07:32:49 UTC --- OK, that seems fair enough. But if we want to make Blobs Transferable, what do you want to happen here? var reader = new FileReader(); reader.readAsArrayBuffer(myblob); setTimeout(function() { worker.postMessage(myblob, [myblob]); }, 500); var xhr = new XMLHttpRequest(); xhr.open("GET", someurl); xhr.send(myblob); setTimeout(function() { worker.postMessage(myblob, [myblob]); }, 500); ? Should the message be delayed until the read has completed? -- Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.
Received on Wednesday, 4 July 2012 07:32:50 UTC