[Bug 23479] File Constructor and Blob Constructor should have same signature

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

--- Comment #6 from Jonas Sicking <jonas@sicking.cc> ---
I think optimizing "taking a Blob and making a File out of it" from

new File([blob], { type: blob.type, name: name });

to

new File(blob, name);


is premature. Lets keep things simple and consistent instead.

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

Received on Friday, 11 October 2013 17:48:32 UTC