Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: client/html/release/html.dart

Issue 9127005: Properly type the clone method for Element and a few of its subclasses. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/html/release/htmlimpl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/release/html.dart
diff --git a/client/html/release/html.dart b/client/html/release/html.dart
index cbf676de6bd44270422e0418a0086c51432de250..acf7b8bb24e34afab643aac77761222c41444ca3 100644
--- a/client/html/release/html.dart
+++ b/client/html/release/html.dart
@@ -11404,6 +11404,8 @@ interface DocumentFragment extends Element default DocumentFragmentWrappingImple
DocumentFragment();
DocumentFragment.html(String html);
+
+ DocumentFragment 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
@@ -11636,6 +11638,8 @@ interface Element extends Node /*, common.NodeSelector, common.ElementTraversal
Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement);
ElementEvents get on();
+
+ Element 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
@@ -12765,6 +12769,8 @@ interface SVGElement extends Element default SVGElementWrappingImplementation {
String get xmlbase();
void set xmlbase(String value);
+
+ SVGElement 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
« no previous file with comments | « no previous file | client/html/release/htmlimpl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698