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: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
CC: [email protected]
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.