mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
15 lines
458 B
Plaintext
15 lines
458 B
Plaintext
// 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 = "";
|
|
Element? source = null;
|
|
};
|