[Bug 25081] Make read operation really async

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25081

--- Comment #14 from Jonas Sicking <jonas@sicking.cc> ---
If you want to keep it map-like and track object identity then I would also
expect that something like:

formdata.append("foo", blob);
blob.close();
xhr.send(formdata);

would fail. It would be weird if you could see that the blob instance is in the
formdata, and thus is closed there, but when you send the formdata the blob
would magically work.

So if that's the behavior we want then you could simply have the formdata grab
a reference to the passed in blob and let the submission fail. So you'd still
not need to worry about keepalive counts as nothing would be kept alive.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 15 April 2014 19:25:45 UTC