MediaError.idl 395 B

1234567891011
  1. // https://html.spec.whatwg.org/multipage/media.html#mediaerror
  2. [Exposed=Window]
  3. interface MediaError {
  4. const unsigned short MEDIA_ERR_ABORTED = 1;
  5. const unsigned short MEDIA_ERR_NETWORK = 2;
  6. const unsigned short MEDIA_ERR_DECODE = 3;
  7. const unsigned short MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
  8. readonly attribute unsigned short code;
  9. readonly attribute DOMString message;
  10. };