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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 157ec0ed8bc3b86f0ae48d3603fbcf63294c9879..eb03c9f02459e6392e8d86b56782968827cd6900 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -8206,7 +8206,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");
}
@@ -17431,7 +17431,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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698