mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 10:56:35 +02:00
Just the boilerplate :^) (cherry picked from commit 35043702813117d22e841e1b1d887d1726d4ed2d; amended to fix conflict in idl_files.gni due to ladybird being worse than serenity at having that file sorted alphabetically)
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;
|
|
};
|