mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
15 lines
413 B
Text
15 lines
413 B
Text
![]() |
#import <DOM/Event.idl>
|
||
|
|
||
|
// https://html.spec.whatwg.org/multipage/interaction.html#commandevent
|
||
|
[Exposed=Window]
|
||
|
interface CommandEvent : Event {
|
||
|
constructor(DOMString type, optional CommandEventInit eventInitDict = {});
|
||
|
readonly attribute Element? source;
|
||
|
readonly attribute DOMString command;
|
||
|
};
|
||
|
|
||
|
dictionary CommandEventInit : EventInit {
|
||
|
Element? source = null;
|
||
|
DOMString command = "";
|
||
|
};
|