Files
tubestation/testing/web-platform/tests/interfaces/media-source.idl
autofoolip d3ec9d4a72 Bug 1679599 [wpt PR 26665] - Update interfaces/media-source.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/media-source.idl (#26665)

Source: https://github.com/w3c/webref/blob/de10892/ed/idl/media-source.idl
Build: https://travis-ci.org/w3c/webref/builds/205001387
--

wpt-commits: 5b0aa7e7d3cc6593c89a78fd0fb5cbcc3308454d
wpt-pr: 26665
2020-12-07 09:25:53 +00:00

85 lines
3.0 KiB
Plaintext

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Media Source Extensions™ (https://w3c.github.io/media-source/)
enum ReadyState {
"closed",
"open",
"ended"
};
enum EndOfStreamError {
"network",
"decode"
};
[Exposed=Window]
interface MediaSource : EventTarget {
constructor();
readonly attribute SourceBufferList sourceBuffers;
readonly attribute SourceBufferList activeSourceBuffers;
readonly attribute ReadyState readyState;
attribute unrestricted double duration;
attribute EventHandler onsourceopen;
attribute EventHandler onsourceended;
attribute EventHandler onsourceclose;
SourceBuffer addSourceBuffer (DOMString type);
undefined removeSourceBuffer (SourceBuffer sourceBuffer);
undefined endOfStream (optional EndOfStreamError error);
undefined setLiveSeekableRange (double start, double end);
undefined clearLiveSeekableRange ();
static boolean isTypeSupported (DOMString type);
};
enum AppendMode {
"segments",
"sequence"
};
[Exposed=Window]
interface SourceBuffer : EventTarget {
attribute AppendMode mode;
readonly attribute boolean updating;
readonly attribute TimeRanges buffered;
attribute double timestampOffset;
readonly attribute AudioTrackList audioTracks;
readonly attribute VideoTrackList videoTracks;
readonly attribute TextTrackList textTracks;
attribute double appendWindowStart;
attribute unrestricted double appendWindowEnd;
attribute EventHandler onupdatestart;
attribute EventHandler onupdate;
attribute EventHandler onupdateend;
attribute EventHandler onerror;
attribute EventHandler onabort;
undefined appendBuffer (BufferSource data);
undefined abort ();
undefined remove (double start, unrestricted double end);
};
[Exposed=Window]
interface SourceBufferList : EventTarget {
readonly attribute unsigned long length;
attribute EventHandler onaddsourcebuffer;
attribute EventHandler onremovesourcebuffer;
getter SourceBuffer (unsigned long index);
};
[Exposed=Window]
partial interface URL {
static DOMString createObjectURL (MediaSource mediaSource);
};
partial interface AudioTrack {
readonly attribute SourceBuffer? sourceBuffer;
};
partial interface VideoTrack {
readonly attribute SourceBuffer? sourceBuffer;
};
partial interface TextTrack {
readonly attribute SourceBuffer? sourceBuffer;
};