mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			574 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			574 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Event.idl>
 | |
| #import <HTML/AudioTrack.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 or AudioTrack)? track;
 | |
| };
 | |
| 
 | |
| dictionary TrackEventInit : EventInit {
 | |
|     // FIXME: Should be: (VideoTrack or AudioTrack or TextTrack)?
 | |
|     (VideoTrack or AudioTrack)? track = null;
 | |
| };
 | 
