mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:22:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			442 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			442 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <Animations/AnimationTimeline.idl>
 | |
| #import <HighResolutionTime/DOMHighResTimeStamp.idl>
 | |
| 
 | |
| // https://www.w3.org/TR/web-animations-1/#dictdef-documenttimelineoptions
 | |
| dictionary DocumentTimelineOptions {
 | |
|   DOMHighResTimeStamp originTime = 0;
 | |
| };
 | |
| 
 | |
| // https://www.w3.org/TR/web-animations-1/#documenttimeline
 | |
| [Exposed=Window]
 | |
| interface DocumentTimeline : AnimationTimeline {
 | |
|   constructor(optional DocumentTimelineOptions options = {});
 | |
| };
 | 
