Files
Mozilla/mozilla/dom/public/idl/events/UIEvent.idl
joki%netscape.com dcc35666e8 Fixes for bug 9544, 9552, 9558, 9561, and 13309. event handler 4x compat. and capture/bubble fixes. r:pollmann
git-svn-id: svn://10.0.0.236/trunk@61096 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-16 06:59:07 +00:00

32 lines
1.2 KiB
Plaintext

interface UIEvent : Event {
/* IID: { 0xa6cf90c3, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
readonly attribute AbstractView view;
readonly attribute long detail;
void initUIEvent(in DOMString typeArg,
in boolean canBubbleArg,
in boolean cancelableArg,
in AbstractView viewArg,
in long detailArg);
};
interface NSUIEvent {
/* IID: { 0xa6cf90c4, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
boolean getPreventDefault();
readonly attribute int layerX;
readonly attribute int layerY;
readonly attribute int pageX;
readonly attribute int pageY;
readonly attribute unsigned long which;
readonly attribute Node rangeParent;
readonly attribute int rangeOffset;
attribute boolean cancelBubble;
readonly attribute boolean isChar;
};