mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
	
		
			595 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			18 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;
							 | 
						||
| 
								 | 
							
								};
							 |