mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +09:00
13 lines
261 B
Text
13 lines
261 B
Text
|
|
interface EventTarget {
|
||
|
|
void addEventListener();
|
||
|
|
};
|
||
|
|
|
||
|
|
interface Event {};
|
||
|
|
|
||
|
|
callback EventHandlerNonNull = any (Event event);
|
||
|
|
typedef EventHandlerNonNull? EventHandler;
|
||
|
|
|
||
|
|
[NoInterfaceObject]
|
||
|
|
interface TestEvent : EventTarget {
|
||
|
|
attribute EventHandler onfoo;
|
||
|
|
};
|