mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:12:46 +00:00 
			
		
		
		
	 7f551d7f6a
			
		
	
	
		7f551d7f6a
		
	
	
	
	
		
			
			This allows us to include IDL files from other base LibWeb directories wihout using relative `../foo.idl` references.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Event.idl>
 | |
| 
 | |
| [Exposed=(Window,Worker), CustomVisit]
 | |
| interface CustomEvent : Event {
 | |
|     constructor(DOMString type, optional CustomEventInit eventInitDict = {});
 | |
| 
 | |
|     readonly attribute any detail;
 | |
| 
 | |
|     undefined initCustomEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false, optional any detail = null);
 | |
| };
 | |
| 
 | |
| dictionary CustomEventInit : EventInit {
 | |
|     any detail = null;
 | |
| };
 |