- From: <bugzilla@jessica.w3.org>
- Date: Fri, 07 Feb 2014 09:54:15 +0000
- To: public-webapps@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=24576
Bug ID: 24576
Summary: Calling URL.createObjectURL() on a closed Blob
Product: WebAppsWG
Version: unspecified
Hardware: PC
OS: Windows NT
Status: NEW
Severity: normal
Priority: P2
Component: File API
Assignee: arun@mozilla.com
Reporter: sof@opera.com
QA Contact: public-webapps-bugzilla@w3.org
CC: public-webapps@w3.org
What is the required behavior for
var blob = new Blob(); blob.close(); URL.createObjectURL(blob);
Failure (what exception, if so?), or observably equal to
var blob = new Blob(); URL.createObjectURL(blob);
http://dev.w3.org/2006/webapi/FileAPI/#close-method says
"..once close() has been called on a Blob, that Blob cannot be used again."
unclear what that means exactly in this context. A clarification would be
appreciated.
--
You are receiving this mail because:
You are on the CC list for the bug.
Received on Friday, 7 February 2014 09:54:16 UTC