mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 02:54:54 +03:00
15 lines
401 B
Plaintext
15 lines
401 B
Plaintext
#import <DOM/Event.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#submitevent
|
|
[Exposed=Window]
|
|
interface SubmitEvent : Event {
|
|
constructor(DOMString type, optional SubmitEventInit eventInitDict = {});
|
|
|
|
readonly attribute HTMLElement? submitter;
|
|
};
|
|
|
|
dictionary SubmitEventInit : EventInit {
|
|
HTMLElement? submitter = null;
|
|
};
|