mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
14 lines
548 B
Text
14 lines
548 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#mediaerror
|
|
|
|
[Exposed=(Window,Worker)]
|
|
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;
|
|
};
|