mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			531 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			531 B
		
	
	
	
		
			Text
		
	
	
	
	
	
|   | #import <DOM/Event.idl> | ||
|  | 
 | ||
|  | // https://www.w3.org/TR/web-animations-1/#animationplaybackevent | ||
|  | [Exposed=Window] | ||
|  | interface AnimationPlaybackEvent : Event { | ||
|  |     constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict = {}); | ||
|  |     readonly attribute double? currentTime; | ||
|  |     readonly attribute double? timelineTime; | ||
|  | }; | ||
|  | 
 | ||
|  | // https://www.w3.org/TR/web-animations-1/#dictdef-animationplaybackeventinit | ||
|  | dictionary AnimationPlaybackEventInit : EventInit { | ||
|  |     double? currentTime = null; | ||
|  |     double? timelineTime = null; | ||
|  | }; |