OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2010, 2011, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2010, 2011, 2012 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 10 matching lines...) Expand all Loading... |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 // https://html.spec.whatwg.org/#media-elements | 26 // https://html.spec.whatwg.org/#media-elements |
27 | 27 |
28 enum CanPlayTypeResult { "" /* empty string */, "maybe", "probably" }; | 28 enum CanPlayTypeResult { "" /* empty string */, "maybe", "probably" }; |
29 [ | 29 [ |
30 DependentLifetime, | 30 DependentLifetime, |
31 RuntimeEnabled=Media, | |
32 ] interface HTMLMediaElement : HTMLElement { | 31 ] interface HTMLMediaElement : HTMLElement { |
33 | 32 |
34 // error state | 33 // error state |
35 readonly attribute MediaError? error; | 34 readonly attribute MediaError? error; |
36 | 35 |
37 // network state | 36 // network state |
38 [Reflect, URL] attribute DOMString src; | 37 [Reflect, URL] attribute DOMString src; |
39 // FIXME: attribute MediaProvider? srcObject; crbug.com/387740 | 38 // FIXME: attribute MediaProvider? srcObject; crbug.com/387740 |
40 readonly attribute DOMString currentSrc; | 39 readonly attribute DOMString currentSrc; |
41 [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymo
us", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin; | 40 [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymo
us", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 [SameObject, RuntimeEnabled=AudioVideoTracks] readonly attribute AudioTrackL
ist audioTracks; | 83 [SameObject, RuntimeEnabled=AudioVideoTracks] readonly attribute AudioTrackL
ist audioTracks; |
85 [SameObject, RuntimeEnabled=AudioVideoTracks] readonly attribute VideoTrackL
ist videoTracks; | 84 [SameObject, RuntimeEnabled=AudioVideoTracks] readonly attribute VideoTrackL
ist videoTracks; |
86 [SameObject] readonly attribute TextTrackList textTracks; | 85 [SameObject] readonly attribute TextTrackList textTracks; |
87 [RaisesException] TextTrack addTextTrack(TextTrackKind kind, optional DOMStr
ing label = "", optional DOMString language = ""); | 86 [RaisesException] TextTrack addTextTrack(TextTrackKind kind, optional DOMStr
ing label = "", optional DOMString language = ""); |
88 | 87 |
89 // Non-standard APIs | 88 // Non-standard APIs |
90 // The number of bytes consumed by the media decoder. | 89 // The number of bytes consumed by the media decoder. |
91 [MeasureAs=PrefixedAudioDecodedByteCount] readonly attribute unsigned long w
ebkitAudioDecodedByteCount; | 90 [MeasureAs=PrefixedAudioDecodedByteCount] readonly attribute unsigned long w
ebkitAudioDecodedByteCount; |
92 [MeasureAs=PrefixedVideoDecodedByteCount] readonly attribute unsigned long w
ebkitVideoDecodedByteCount; | 91 [MeasureAs=PrefixedVideoDecodedByteCount] readonly attribute unsigned long w
ebkitVideoDecodedByteCount; |
93 }; | 92 }; |
OLD | NEW |