mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <PerformanceTimeline/PerformanceEntry.idl>
 | |
| 
 | |
| // https://w3c.github.io/user-timing/#performancemeasure
 | |
| [Exposed=(Window,Worker)]
 | |
| interface PerformanceMeasure : PerformanceEntry {
 | |
|     readonly attribute any detail;
 | |
| };
 | |
| 
 | |
| // https://w3c.github.io/user-timing/#extensions-performance-interface
 | |
| dictionary PerformanceMeasureOptions {
 | |
|     any detail;
 | |
|     (DOMString or DOMHighResTimeStamp) start;
 | |
|     DOMHighResTimeStamp duration;
 | |
|     (DOMString or DOMHighResTimeStamp) end;
 | |
| };
 | 
