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)
18 lines
595 B
Plaintext
18 lines
595 B
Plaintext
#import <DOM/Event.idl>
|
|
#import <HTML/TimeRanges.idl>
|
|
|
|
// https://w3c.github.io/media-source/#dom-bufferedchangeevent
|
|
[Exposed=(Window,DedicatedWorker)]
|
|
interface BufferedChangeEvent : Event {
|
|
constructor(DOMString type, optional BufferedChangeEventInit eventInitDict = {});
|
|
|
|
[FIXME,SameObject] readonly attribute TimeRanges addedRanges;
|
|
[FIXME,SameObject] readonly attribute TimeRanges removedRanges;
|
|
};
|
|
|
|
// https://w3c.github.io/media-source/#dom-bufferedchangeeventinit
|
|
dictionary BufferedChangeEventInit : EventInit {
|
|
TimeRanges addedRanges;
|
|
TimeRanges removedRanges;
|
|
};
|