mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-26 18:09:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			455 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			455 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;
 | |
|     readonly attribute Element? source;
 | |
| };
 | |
| 
 | |
| dictionary ToggleEventInit : EventInit {
 | |
|     DOMString oldState = "";
 | |
|     DOMString newState = "";
 | |
| };
 |