forked from mirrors/gecko-dev
This just makes our code fail more gracefully. Source-Repo: https://github.com/servo/servo Source-Revision: 0444d76c6b117c3ad8dc4d3a59de252eaececbf1 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 72109f74604bfbdff846e5304098d221d0c5bbd9
15 lines
579 B
Text
15 lines
579 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]
|
|
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;
|
|
};
|