| Index: client/html/release/html.dart
|
| diff --git a/client/html/release/html.dart b/client/html/release/html.dart
|
| index a7f0440525937f889dc6f124c231416e268acc47..ba9d66974e788493809079bbc459fd33df64b6b2 100644
|
| --- a/client/html/release/html.dart
|
| +++ b/client/html/release/html.dart
|
| @@ -20303,6 +20303,8 @@ interface Node extends EventTarget {
|
| // insertBefore or we switch NodeList to implement LinkedList rather than
|
| // array.
|
| Node insertBefore(Node newChild, Node refChild);
|
| +
|
| + Node clone(bool deep);
|
| }
|
| // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -20524,9 +20526,7 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
|
| LevelDom.unwrap(newChild), LevelDom.unwrap(refChild)));
|
| }
|
|
|
| - // TODO(jacobr): required for some benchmarks. Added to this class but not Node while
|
| - // we decide what to do with it.
|
| - Node cloneNode(bool deep) {
|
| + Node clone(bool deep) {
|
| return LevelDom.wrapNode(_ptr.cloneNode(deep));
|
| }
|
| }
|
|
|