URL : Object
Provides methods to generate a url for
a %%/Blob|**Blob**%% so locally generated
content can be passed to APIs that accept urls.
Spec:
http://www.w3.org/TR/FileAPI/#URL-object
----
createObjectURL(blob : Blob) : String
Creates a url for the specified **blob** that can be passed to
methods that expect a url. When done with the returned url, call
%%#revokeObjectURL|**revokeObjectURL()**%% to free the resources
associated with the created url.
Spec:
http://www.w3.org/TR/FileAPI/#dfn-createObjectURL
----
revokeObjectURL(url : String) : undefined
Frees the resources associated with the **url** created by
%%#createObjectURL|**createObjectURL()**%%.
Spec:
http://www.w3.org/TR/FileAPI/#dfn-revokeObjectURL