OLD | NEW |
| (Empty) |
1 | |
2 class _MutationEventJs extends _EventJs implements MutationEvent native "*Mutati
onEvent" { | |
3 | |
4 static final int ADDITION = 2; | |
5 | |
6 static final int MODIFICATION = 1; | |
7 | |
8 static final int REMOVAL = 3; | |
9 | |
10 final int attrChange; | |
11 | |
12 final String attrName; | |
13 | |
14 final String newValue; | |
15 | |
16 final String prevValue; | |
17 | |
18 final _NodeJs relatedNode; | |
19 | |
20 void initMutationEvent(String type, bool canBubble, bool cancelable, _NodeJs r
elatedNode, String prevValue, String newValue, String attrName, int attrChange)
native; | |
21 } | |
OLD | NEW |