- From: <bugzilla@jessica.w3.org>
- Date: Thu, 12 Jul 2012 02:46:01 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=16953
--- Comment #9 from Jonas Sicking <jonas@sicking.cc> 2012-07-12 02:46:01 UTC ---
I'd be willing to try to change Firefox to use autoRevoke as default behavior.
I strongly suspect that the vast majority of code look like:
function doStuff(...) {
...
url = URL.createObjectURL(myblob);
img.src = url;
img.onload = function() { URL.revokeObjectURL(url); };
...
}
In which case auto-revoking will work just fine.
--
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 Thursday, 12 July 2012 02:46:02 UTC