| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index 9a5461c2a03e89529e6162d058acc2de654efce5..0c768e476daeb4f67e7ea766ea172c18b546d647 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -13195,6 +13195,21 @@ class _MutationEventImpl extends _EventImpl implements MutationEvent {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +class _MutationObserverImpl extends NativeFieldWrapperClass1 implements MutationObserver {
|
| +
|
| + void disconnect() native "MutationObserver_disconnect_Callback";
|
| +
|
| + void observe(Node target, Map options) native "MutationObserver_observe_Callback";
|
| +
|
| + List<MutationRecord> takeRecords() native "MutationObserver_takeRecords_Callback";
|
| +
|
| +}
|
| +// 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.
|
| +
|
| class _MutationRecordImpl extends NativeFieldWrapperClass1 implements MutationRecord {
|
|
|
| NodeList get addedNodes() native "MutationRecord_addedNodes_Getter";
|
| @@ -20737,30 +20752,17 @@ class _WebKitCSSTransformValueImpl extends _CSSValueListImpl implements CSSTrans
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -class _WebKitMutationObserverImpl extends NativeFieldWrapperClass1 implements WebKitMutationObserver {
|
| -
|
| - void disconnect() native "WebKitMutationObserver_disconnect_Callback";
|
| -
|
| - void observe(Node target, Map options) native "WebKitMutationObserver_observe_Callback";
|
| -
|
| - List<MutationRecord> takeRecords() native "WebKitMutationObserver_takeRecords_Callback";
|
| -
|
| -}
|
| -// 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.
|
| -
|
| class _WebKitNamedFlowImpl extends NativeFieldWrapperClass1 implements WebKitNamedFlow {
|
|
|
| + int get firstEmptyRegionIndex() native "WebKitNamedFlow_firstEmptyRegionIndex_Getter";
|
| +
|
| String get name() native "WebKitNamedFlow_name_Getter";
|
|
|
| bool get overset() native "WebKitNamedFlow_overset_Getter";
|
|
|
| NodeList getContent() native "WebKitNamedFlow_getContent_Callback";
|
|
|
| - NodeList getRegionsByContentNode(Node contentNode) native "WebKitNamedFlow_getRegionsByContentNode_Callback";
|
| + NodeList getRegionsByContent(Node contentNode) native "WebKitNamedFlow_getRegionsByContent_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -30748,7 +30750,7 @@ interface MouseEvent extends UIEvent default _MouseEventFactoryProvider {
|
|
|
| // 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.
|
| @@ -30788,6 +30790,24 @@ interface MutationEvent extends Event {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +/// @domName MutationObserver
|
| +interface MutationObserver {
|
| +
|
| + /** @domName MutationObserver.disconnect */
|
| + void disconnect();
|
| +
|
| + /** @domName MutationObserver.observe */
|
| + void observe(Node target, Map options);
|
| +
|
| + /** @domName MutationObserver.takeRecords */
|
| + 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.
|
| +
|
| /// @domName MutationRecord
|
| interface MutationRecord {
|
|
|
| @@ -38873,27 +38893,12 @@ interface WebKitCSSFilterValue extends CSSValueList {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -/// @domName WebKitMutationObserver
|
| -interface WebKitMutationObserver {
|
| -
|
| - /** @domName WebKitMutationObserver.disconnect */
|
| - void disconnect();
|
| -
|
| - /** @domName WebKitMutationObserver.observe */
|
| - void observe(Node target, Map options);
|
| -
|
| - /** @domName WebKitMutationObserver.takeRecords */
|
| - 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.
|
| -
|
| /// @domName WebKitNamedFlow
|
| interface WebKitNamedFlow {
|
|
|
| + /** @domName WebKitNamedFlow.firstEmptyRegionIndex */
|
| + final int firstEmptyRegionIndex;
|
| +
|
| /** @domName WebKitNamedFlow.name */
|
| final String name;
|
|
|
| @@ -38903,8 +38908,8 @@ interface WebKitNamedFlow {
|
| /** @domName WebKitNamedFlow.getContent */
|
| NodeList getContent();
|
|
|
| - /** @domName WebKitNamedFlow.getRegionsByContentNode */
|
| - NodeList getRegionsByContentNode(Node contentNode);
|
| + /** @domName WebKitNamedFlow.getRegionsByContent */
|
| + 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
|
|
|