| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index f8afb8612ab7b9298058535aa510ba4a9ff3c9a7..3c928bde9fdccbf64d689b8f97abab6b4d2fd09b 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -6021,7 +6021,7 @@ interface MouseEvent extends UIEvent {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -typedef bool MutationCallback(List<MutationRecord> mutations, WebKitMutationObserver observer);
|
| +typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver observer);
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
| @@ -6054,6 +6054,20 @@ interface MutationEvent extends Event {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +interface MutationObserver {
|
| +
|
| + void disconnect();
|
| +
|
| + void observe(Node target, Map options);
|
| +
|
| + List<MutationRecord> takeRecords();
|
| +}
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| interface MutationRecord {
|
|
|
| final NodeList addedNodes;
|
| @@ -11848,29 +11862,17 @@ interface WebKitCSSTransformValue extends CSSValueList {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface WebKitMutationObserver {
|
| -
|
| - void disconnect();
|
| -
|
| - void observe(Node target, Map options);
|
| -
|
| - List<MutationRecord> takeRecords();
|
| -}
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| interface WebKitNamedFlow {
|
|
|
| + final int firstEmptyRegionIndex;
|
| +
|
| final String name;
|
|
|
| final bool overset;
|
|
|
| NodeList getContent();
|
|
|
| - NodeList getRegionsByContentNode(Node contentNode);
|
| + NodeList getRegionsByContent(Node contentNode);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
|
|