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