mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-12 09:49:06 +00:00
14 lines
261 B
Plaintext
14 lines
261 B
Plaintext
interface EventTarget {
|
|
void addEventListener();
|
|
};
|
|
|
|
interface Event {};
|
|
|
|
callback EventHandlerNonNull = any (Event event);
|
|
typedef EventHandlerNonNull? EventHandler;
|
|
|
|
[NoInterfaceObject]
|
|
interface TestEvent : EventTarget {
|
|
attribute EventHandler onfoo;
|
|
};
|