blob: 5e88dfcdbff3f12e65db017e0dbce274e2f45d0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import <DOM/Event.idl>
#import <HTML/HTMLElement.idl>
[NoInstanceWrapper]
interface SubmitEvent : Event {
constructor(DOMString type, optional SubmitEventInit eventInitDict = {});
readonly attribute HTMLElement? submitter;
};
dictionary SubmitEventInit : EventInit {
HTMLElement? submitter = null;
};
|