| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface MutationEvent extends Event { | 7 interface MutationEvent extends Event { |
| 8 | 8 |
| 9 static final int ADDITION = 2; | 9 static final int ADDITION = 2; |
| 10 | 10 |
| 11 static final int MODIFICATION = 1; | 11 static final int MODIFICATION = 1; |
| 12 | 12 |
| 13 static final int REMOVAL = 3; | 13 static final int REMOVAL = 3; |
| 14 | 14 |
| 15 int get attrChange(); | 15 final int attrChange; |
| 16 | 16 |
| 17 String get attrName(); | 17 final String attrName; |
| 18 | 18 |
| 19 String get newValue(); | 19 final String newValue; |
| 20 | 20 |
| 21 String get prevValue(); | 21 final String prevValue; |
| 22 | 22 |
| 23 Node get relatedNode(); | 23 final Node relatedNode; |
| 24 | 24 |
| 25 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela
tedNode, String prevValue, String newValue, String attrName, int attrChange); | 25 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela
tedNode, String prevValue, String newValue, String attrName, int attrChange); |
| 26 } | 26 } |
| OLD | NEW |