mirror of
https://github.com/servo/servo.git
synced 2025-06-09 09:03:23 +00:00
15 lines
580 B
Text
15 lines
580 B
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#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;
|
|
};
|