mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-08 20:22:55 +00:00
17 lines
595 B
Text
17 lines
595 B
Text
#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;
|
|
};
|