1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #include "nsIDOMEvent.idl"
- [scriptable, uuid(55c7af7b-1a64-40bf-87eb-2c2cbee0491b)]
- interface nsIDOMCustomEvent : nsIDOMEvent
- {
- void setCurrentTarget(in nsIDOMNode target);
- void setEventPhase(in unsigned short phase);
- };
|