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