2021-10-01 19:30:50 +03:00
|
|
|
#import <DOM/Event.idl>
|
|
|
|
|
|
2020-07-28 19:38:25 +02:00
|
|
|
interface UIEvent : Event {
|
2021-10-01 19:30:50 +03:00
|
|
|
constructor(DOMString type, optional UIEventInit eventInitDict = {});
|
2021-10-01 19:18:19 +03:00
|
|
|
readonly attribute Window? view;
|
|
|
|
|
readonly attribute long detail;
|
2022-02-25 17:31:56 +01:00
|
|
|
|
|
|
|
|
// NOTE: This is "deprecated, but supported for backwards-compatibility with widely-deployed implementations."
|
|
|
|
|
[ImplementedAs=init_ui_event] undefined initUIEvent(DOMString typeArg, optional boolean bubblesArg = false, optional boolean cancelableArg = false, optional Window? viewArg = null, optional long detailArg = 0);
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|
2021-10-01 19:30:50 +03:00
|
|
|
|
|
|
|
|
dictionary UIEventInit : EventInit {
|
|
|
|
|
Window? view = null;
|
|
|
|
|
long detail = 0;
|
|
|
|
|
};
|