mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
14 lines
415 B
Text
14 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 = "";
|
|
};
|