mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Text
		
	
	
	
	
	
|   | #import <DOM/Event.idl> | ||
|  | 
 | ||
|  | // https://html.spec.whatwg.org/multipage/interaction.html#toggleevent | ||
|  | [Exposed=Window] | ||
|  | interface ToggleEvent : Event { | ||
|  |     constructor(DOMString type, optional ToggleEventInit eventInitDict = {}); | ||
|  |     readonly attribute DOMString oldState; | ||
|  |     readonly attribute DOMString newState; | ||
|  | }; | ||
|  | 
 | ||
|  | dictionary ToggleEventInit : EventInit { | ||
|  |     DOMString oldState = ""; | ||
|  |     DOMString newState = ""; | ||
|  | }; |