| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 // WARNING: |
| 6 // This file contains documentation that is merged into the real source. |
| 7 // Do not make code changes here. |
| 8 |
| 9 /// @domName MutationRecord |
| 10 interface MutationRecord { |
| 11 |
| 12 /** @domName MutationRecord.addedNodes */ |
| 13 final NodeList addedNodes; |
| 14 |
| 15 /** @domName MutationRecord.attributeName */ |
| 16 final String attributeName; |
| 17 |
| 18 /** @domName MutationRecord.attributeNamespace */ |
| 19 final String attributeNamespace; |
| 20 |
| 21 /** @domName MutationRecord.nextSibling */ |
| 22 final Node nextSibling; |
| 23 |
| 24 /** @domName MutationRecord.oldValue */ |
| 25 final String oldValue; |
| 26 |
| 27 /** @domName MutationRecord.previousSibling */ |
| 28 final Node previousSibling; |
| 29 |
| 30 /** @domName MutationRecord.removedNodes */ |
| 31 final NodeList removedNodes; |
| 32 |
| 33 /** @domName MutationRecord.target */ |
| 34 final Node target; |
| 35 |
| 36 /** @domName MutationRecord.type */ |
| 37 final String type; |
| 38 } |
| OLD | NEW |