mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
								 | 
							
								#import <DOM/EventTarget.idl>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// https://html.spec.whatwg.org/multipage/media.html#texttrackcue
							 | 
						||
| 
								 | 
							
								[Exposed=Window]
							 | 
						||
| 
								 | 
							
								interface TextTrackCue : EventTarget {
							 | 
						||
| 
								 | 
							
								    readonly attribute TextTrack? track;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    attribute DOMString id;
							 | 
						||
| 
								 | 
							
								    attribute double startTime;
							 | 
						||
| 
								 | 
							
								    attribute unrestricted double endTime;
							 | 
						||
| 
								 | 
							
								    attribute boolean pauseOnExit;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    attribute EventHandler onenter;
							 | 
						||
| 
								 | 
							
								    attribute EventHandler onexit;
							 | 
						||
| 
								 | 
							
								};
							 |