mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:32:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			512 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			512 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Event.idl>
 | |
| #import <HTML/VideoTrack.idl>
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/media.html#trackevent
 | |
| [Exposed=Window, UseNewAKString]
 | |
| interface TrackEvent : Event {
 | |
|     constructor(DOMString type, optional TrackEventInit eventInitDict = {});
 | |
| 
 | |
|     // FIXME: Should be: (VideoTrack or AudioTrack or TextTrack)?
 | |
|     readonly attribute VideoTrack? track;
 | |
| };
 | |
| 
 | |
| dictionary TrackEventInit : EventInit {
 | |
|     // FIXME: Should be: (VideoTrack or AudioTrack or TextTrack)?
 | |
|     VideoTrack? track = null;
 | |
| };
 | 
