Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 interface EventTarget {
2 void addEventListener();
3 };
4
5 interface Event {};
6
7 callback EventHandlerNonNull = any (Event event);
8 typedef EventHandlerNonNull? EventHandler;
9
10 [NoInterfaceObject]
11 interface TestEvent : EventTarget {
12 attribute EventHandler onfoo;
13 };