blob: d317d3011a44cdcca0520db3bb327b68e5732979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <DOM/Event.idl>
interface UIEvent : Event {
constructor(DOMString type, optional UIEventInit eventInitDict = {});
readonly attribute Window? view;
readonly attribute long detail;
};
dictionary UIEventInit : EventInit {
Window? view = null;
long detail = 0;
};
|