mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
// https://w3c.github.io/media-source/#dom-sourcebuffer
|
|
enum AppendMode {
|
|
"segments",
|
|
"sequence",
|
|
};
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer
|
|
[Exposed=(Window,DedicatedWorker)]
|
|
interface SourceBuffer : EventTarget {
|
|
attribute AppendMode mode;
|
|
readonly attribute boolean updating;
|
|
readonly attribute TimeRanges buffered;
|
|
[FIXME] attribute double timestampOffset;
|
|
[FIXME] readonly attribute AudioTrackList audioTracks;
|
|
[FIXME] readonly attribute VideoTrackList videoTracks;
|
|
[FIXME] readonly attribute TextTrackList textTracks;
|
|
[FIXME] attribute double appendWindowStart;
|
|
[FIXME] 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 changeType(DOMString type);
|
|
[FIXME] undefined remove(double start, unrestricted double end);
|
|
};
|