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

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

--- Comment #3 from Jonas Sicking <jonas@sicking.cc> ---
"after GC" is key here. GC doesn't always collect all garbage. So for something
like

var tempBlob = new Blob(...);
var file = new File(tempBlob, "name");
tempBlob = null;

the 'tempBlob' might get GCed after the 'file', hence retaining the data longer
than needed.

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

Received on Friday, 11 October 2013 16:49:10 UTC