Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 class MutationEvent extends Event native "*MutationEvent" { | 2 class MutationEvent extends Event native "*MutationEvent" { |
| 3 | 3 |
| 4 static final int ADDITION = 2; | |
| 5 | |
| 6 static final int MODIFICATION = 1; | |
| 7 | |
| 8 static final int REMOVAL = 3; | |
| 9 | |
| 4 int attrChange; | 10 int attrChange; |
| 5 | 11 |
| 6 String attrName; | 12 String attrName; |
| 7 | 13 |
| 8 String newValue; | 14 String newValue; |
| 9 | 15 |
| 10 String prevValue; | 16 String prevValue; |
| 11 | 17 |
| 12 Node relatedNode; | 18 Node relatedNode; |
| 13 | 19 |
| 14 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) nat ive; | 20 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) nat ive; |
| 15 } | 21 } |
| OLD | NEW |