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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 12432017: Fix after bad merge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 15a55622ccccf2fc0837e3b1684286dd0e75c0a7..6ce15f69bc9ce6f39d26a39138dcae473bbd4370 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -8943,7 +8943,7 @@ class _ChildrenElementList implements List {
throw new RangeError.range(index, 0, length);
}
if (index == length) {
- _element.$dom_appendChild(element);
+ _element.append(element);
} else {
throw new UnimplementedError("insert on ElementLists");
}
@@ -18886,7 +18886,7 @@ class _ChildNodeListLazy implements List {
throw new RangeError.range(index, 0, length);
}
if (index == length) {
- _this.$dom_appendChild(node);
+ _this.append(node);
} else {
this_.insertBefore(node, this[index]);
}
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698