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

Unified Diff: client/html/src/Node.dart

Issue 8330003: Rename cloneNode to clone and move it into the Node interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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
Index: client/html/src/Node.dart
diff --git a/client/html/src/Node.dart b/client/html/src/Node.dart
index 582519ef711451d293dd41b09c706e0cc406ec3e..f276e34ad09e249f229eb13aa93555bb0f2bdb71 100644
--- a/client/html/src/Node.dart
+++ b/client/html/src/Node.dart
@@ -32,4 +32,6 @@ 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);
}

Powered by Google App Engine
This is Rietveld 408576698