mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
12 lines
404 B
Plaintext
12 lines
404 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;
|
|
[FIXME] attribute EventHandler onstartstreaming;
|
|
[FIXME] attribute EventHandler onendstreaming;
|
|
};
|