| 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 [ | 26 [ |
| 27 RuntimeEnabled=Media, | 27 RuntimeEnabled=Media, |
| 28 ActiveDOMObject | 28 ActiveDOMObject |
| 29 ] interface HTMLMediaElement : HTMLElement { | 29 ] interface HTMLMediaElement : HTMLElement { |
| 30 | 30 |
| 31 // error state | 31 // error state |
| 32 readonly attribute MediaError error; | 32 readonly attribute MediaError error; |
| 33 | 33 |
| 34 // network state | 34 // network state |
| 35 [Reflect, TreatNullAs=NullString, URL] attribute DOMString src; | 35 [Reflect, TreatNullAs=NullString, URL] attribute DOMString src; |
| 36 [URL] readonly attribute DOMString currentSrc; | 36 [URL] readonly attribute DOMString currentSrc; |
| 37 | 37 |
| 38 const unsigned short NETWORK_EMPTY = 0; | 38 const unsigned short NETWORK_EMPTY = 0; |
| 39 const unsigned short NETWORK_IDLE = 1; | 39 const unsigned short NETWORK_IDLE = 1; |
| 40 const unsigned short NETWORK_LOADING = 2; | 40 const unsigned short NETWORK_LOADING = 2; |
| 41 const unsigned short NETWORK_NO_SOURCE = 3; | 41 const unsigned short NETWORK_NO_SOURCE = 3; |
| 42 readonly attribute unsigned short networkState; | 42 readonly attribute unsigned short networkState; |
| 43 attribute DOMString preload; | 43 attribute DOMString preload; |
| 44 | 44 |
| 45 readonly attribute TimeRanges buffered; | 45 readonly attribute TimeRanges buffered; |
| 46 void load(); | 46 void load(); |
| 47 DOMString canPlayType([Default=Undefined] optional DOMString type, [Default=Unde
fined, TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString k
eySystem); | 47 DOMString canPlayType([Default=Undefined] optional DOMString type, [Default=
Undefined, TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMStri
ng keySystem); |
| 48 | 48 |
| 49 // ready state | 49 // ready state |
| 50 const unsigned short HAVE_NOTHING = 0; | 50 const unsigned short HAVE_NOTHING = 0; |
| 51 const unsigned short HAVE_METADATA = 1; | 51 const unsigned short HAVE_METADATA = 1; |
| 52 const unsigned short HAVE_CURRENT_DATA = 2; | 52 const unsigned short HAVE_CURRENT_DATA = 2; |
| 53 const unsigned short HAVE_FUTURE_DATA = 3; | 53 const unsigned short HAVE_FUTURE_DATA = 3; |
| 54 const unsigned short HAVE_ENOUGH_DATA = 4; | 54 const unsigned short HAVE_ENOUGH_DATA = 4; |
| 55 readonly attribute unsigned short readyState; | 55 readonly attribute unsigned short readyState; |
| 56 readonly attribute boolean seeking; | 56 readonly attribute boolean seeking; |
| 57 | 57 |
| 58 // playback state | 58 // playback state |
| 59 [SetterRaisesException] attribute double currentTime; | 59 [SetterRaisesException] attribute double currentTime; |
| 60 readonly attribute double initialTime; | 60 readonly attribute double initialTime; |
| 61 readonly attribute double startTime; | 61 readonly attribute double startTime; |
| 62 readonly attribute double duration; | 62 readonly attribute double duration; |
| 63 readonly attribute boolean paused; | 63 readonly attribute boolean paused; |
| 64 attribute double defaultPlaybackRate; | 64 attribute double defaultPlaybackRate; |
| 65 attribute double playbackRate; | 65 attribute double playbackRate; |
| 66 readonly attribute TimeRanges played; | 66 readonly attribute TimeRanges played; |
| 67 readonly attribute TimeRanges seekable; | 67 readonly attribute TimeRanges seekable; |
| 68 readonly attribute boolean ended; | 68 readonly attribute boolean ended; |
| 69 [Reflect] attribute boolean autoplay; | 69 [Reflect] attribute boolean autoplay; |
| 70 [Reflect] attribute boolean loop; | 70 [Reflect] attribute boolean loop; |
| 71 void play(); | 71 void play(); |
| 72 void pause(); | 72 void pause(); |
| 73 | 73 |
| 74 // media controller | 74 // media controller |
| 75 [Reflect, TreatNullAs=NullString] attribute DOMString mediaGroup; | 75 [Reflect, TreatNullAs=NullString] attribute DOMString mediaGroup; |
| 76 [CustomSetter] attribute MediaController controller; | 76 [CustomSetter] attribute MediaController controller; |
| 77 | 77 |
| 78 // controls | 78 // controls |
| 79 attribute boolean controls; | 79 attribute boolean controls; |
| 80 [SetterRaisesException] attribute double volume; | 80 [SetterRaisesException] attribute double volume; |
| 81 attribute boolean muted; | 81 attribute boolean muted; |
| 82 [Reflect=muted] attribute boolean defaultMuted; | 82 [Reflect=muted] attribute boolean defaultMuted; |
| 83 | 83 |
| 84 // tracks | 84 // tracks |
| 85 [RuntimeEnabled=VideoTrack] readonly attribute TextTrackList textTracks; | 85 [RuntimeEnabled=VideoTrack] readonly attribute TextTrackList textTracks; |
| 86 [RuntimeEnabled=VideoTrack, RaisesException] TextTrack addTextTrack(DOMString ki
nd, optional DOMString label, optional DOMString language); | 86 [RuntimeEnabled=VideoTrack, RaisesException] TextTrack addTextTrack(DOMStrin
g kind, optional DOMString label, optional DOMString language); |
| 87 | 87 |
| 88 // WebKit extensions | 88 // WebKit extensions |
| 89 | 89 |
| 90 // The number of bytes consumed by the media decoder. | 90 // The number of bytes consumed by the media decoder. |
| 91 readonly attribute unsigned long webkitAudioDecodedByteCount; | 91 [MeasureAs=PrefixedAudioDecodedByteCount] readonly attribute unsigned long w
ebkitAudioDecodedByteCount; |
| 92 readonly attribute unsigned long webkitVideoDecodedByteCount; | 92 [MeasureAs=PrefixedVideoDecodedByteCount] readonly attribute unsigned long w
ebkitVideoDecodedByteCount; |
| 93 | 93 |
| 94 // FIXME: add DeprecateAs=PrefixedMediaGenerateKeyRequest when MediaKeys is read
y. | 94 // FIXME: add DeprecateAs=PrefixedMediaGenerateKeyRequest when MediaKeys is
ready. |
| 95 [RuntimeEnabled=PrefixedEncryptedMedia, RaisesException] void webkitGenerateKeyR
equest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem
, optional Uint8Array initData); | 95 [RuntimeEnabled=PrefixedEncryptedMedia, RaisesException] void webkitGenerate
KeyRequest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySy
stem, optional Uint8Array initData); |
| 96 [RuntimeEnabled=PrefixedEncryptedMedia, RaisesException] void webkitAddKey([Trea
tNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, Uint8Array
key, optional Uint8Array initData, [Default=NullString] optional DOMString sess
ionId); | 96 [RuntimeEnabled=PrefixedEncryptedMedia, RaisesException] void webkitAddKey([
TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, Uint8A
rray key, optional Uint8Array initData, [Default=NullString] optional DOMString
sessionId); |
| 97 [RuntimeEnabled=PrefixedEncryptedMedia, RaisesException] void webkitCancelKeyReq
uest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem,
[Default=NullString] optional DOMString sessionId); | 97 [RuntimeEnabled=PrefixedEncryptedMedia, RaisesException] void webkitCancelKe
yRequest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySyst
em, [Default=NullString] optional DOMString sessionId); |
| 98 | 98 |
| 99 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitkeyadded; | 99 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitkeyad
ded; |
| 100 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitkeyerror; | 100 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitkeyer
ror; |
| 101 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitkeymessag
e; | 101 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitkeyme
ssage; |
| 102 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitneedkey; | 102 [RuntimeEnabled=PrefixedEncryptedMedia] attribute EventHandler onwebkitneedk
ey; |
| 103 | 103 |
| 104 [RuntimeEnabled=EncryptedMedia, Conditional=ENCRYPTED_MEDIA_V2] attribute MediaK
eys mediaKeys; | 104 [RuntimeEnabled=EncryptedMedia, Conditional=ENCRYPTED_MEDIA_V2] attribute Me
diaKeys mediaKeys; |
| 105 }; | 105 }; |
| OLD | NEW |