mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <DOM/Event.idl>
 | 
						|
#import <HTML/HTMLElement.idl>
 | 
						|
 | 
						|
[]
 | 
						|
interface SubmitEvent : Event {
 | 
						|
    constructor(DOMString type, optional SubmitEventInit eventInitDict = {});
 | 
						|
 | 
						|
    readonly attribute HTMLElement? submitter;
 | 
						|
};
 | 
						|
 | 
						|
dictionary SubmitEventInit : EventInit {
 | 
						|
   HTMLElement? submitter = null;
 | 
						|
};
 |