BlobEvent()
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
The BlobEvent()
constructor returns a newly created BlobEvent
object with an associated Blob
.
Syntax
JavaScript
Copy Code
blobEvent = new BlobEvent({data: aSpecificBlob});
Arguments
The BlobEvent()
constructor also inherits arguments from Event()
.
data
- Is an
Blob
associated with the event.
Specifications
Specification | Status | Comment |
---|---|---|
MediaStream Recording The definition of 'BlobEvent' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | Not supported | 22.0 (22.0) | Not supported | Not supported | Not supported |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | Not supported | 22.0 (22.0) | Not supported | Not supported | Not supported |
See also
- The
BlobEvent
interface it belongs to.
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/blobevent/blobevent