mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 21:12:08 +02:00
13 lines
290 B
Plaintext
13 lines
290 B
Plaintext
#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;
|
|
};
|