00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 module events {
00021
00022
00023 interface MutationEvent : Event {
00024
00025
00026 const unsigned short MODIFICATION = 1;
00027 const unsigned short ADDITION = 2;
00028 const unsigned short REMOVAL = 3;
00029
00030 readonly attribute Node relatedNode;
00031 readonly attribute DOMString prevValue;
00032 readonly attribute DOMString newValue;
00033 readonly attribute DOMString attrName;
00034 readonly attribute unsigned short attrChange;
00035
00036 [OldStyleObjC] void initMutationEvent(in AtomicString type,
00037 in boolean canBubble,
00038 in boolean cancelable,
00039 in Node relatedNode,
00040 in DOMString prevValue,
00041 in DOMString newValue,
00042 in DOMString attrName,
00043 in unsigned short attrChange);
00044
00045 };
00046
00047 }