mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
12 lines
388 B
Plaintext
12 lines
388 B
Plaintext
#import <DOM/EventHandler.idl>
|
|
#import <MediaSourceExtensions/MediaSource.idl>
|
|
|
|
// https://w3c.github.io/media-source/#managedmediasource-interface
|
|
[Exposed=(Window,DedicatedWorker)]
|
|
interface ManagedMediaSource : MediaSource {
|
|
constructor();
|
|
[FIXME] readonly attribute boolean streaming;
|
|
attribute EventHandler onstartstreaming;
|
|
attribute EventHandler onendstreaming;
|
|
};
|