mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 16:13:21 +00:00
12 lines
395 B
Text
12 lines
395 B
Text
![]() |
// https://html.spec.whatwg.org/multipage/media.html#mediaerror
|
||
|
[Exposed=Window]
|
||
|
interface MediaError {
|
||
|
const unsigned short MEDIA_ERR_ABORTED = 1;
|
||
|
const unsigned short MEDIA_ERR_NETWORK = 2;
|
||
|
const unsigned short MEDIA_ERR_DECODE = 3;
|
||
|
const unsigned short MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
|
||
|
|
||
|
readonly attribute unsigned short code;
|
||
|
readonly attribute DOMString message;
|
||
|
};
|