mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	 51528ec677
			
		
	
	
		51528ec677
		
	
	
	
	
		
			
			This change takes all existing WebIDL files in the repo that had definition lines without four leading spaces, and fixes them so they have four leading spaces.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			593 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			593 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Event.idl>
 | |
| 
 | |
| // https://www.w3.org/TR/css-animations-1/#animationevent
 | |
| [Exposed=Window]
 | |
| interface AnimationEvent : Event {
 | |
|     constructor(CSSOMString type, optional AnimationEventInit animationEventInitDict = {});
 | |
|     readonly attribute CSSOMString animationName;
 | |
|     readonly attribute double elapsedTime;
 | |
|     readonly attribute CSSOMString pseudoElement;
 | |
| };
 | |
| 
 | |
| // https://www.w3.org/TR/css-animations-1/#dictdef-animationeventinit
 | |
| dictionary AnimationEventInit : EventInit {
 | |
|     CSSOMString animationName = "";
 | |
|     double elapsedTime = 0.0;
 | |
|     CSSOMString pseudoElement = "";
 | |
| };
 |