mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <UIEvents/UIEvent.idl>
 | |
| 
 | |
| [Exposed=Window]
 | |
| interface FocusEvent : UIEvent {
 | |
| 
 | |
|     constructor(DOMString type, optional FocusEventInit eventInitDict = {});
 | |
|     readonly attribute EventTarget? relatedTarget;
 | |
| 
 | |
| };
 | |
| 
 | |
| dictionary FocusEventInit : UIEventInit {
 | |
| 
 | |
|     EventTarget? relatedTarget = null;
 | |
| 
 | |
| };
 | 
