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

Unified Diff: tests/html/css_test.dart

Issue 14883008: use .append instead of .nodes.add (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: revert node_test and element_test Created 7 years, 7 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 | « tests/html/cross_frame_test.dart ('k') | tests/html/dart_object_local_storage_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/css_test.dart
diff --git a/tests/html/css_test.dart b/tests/html/css_test.dart
index b335d658f3bd3b5ec141af87b62022d152c83101..01a05d06b8e7a460a770db0e9ea6e442d20541d9 100644
--- a/tests/html/css_test.dart
+++ b/tests/html/css_test.dart
@@ -28,7 +28,7 @@ main() {
background-color: red;
-webkit-transform: translate3d(250px, 100px, 0px);
''';
- document.body.nodes.add(element);
+ document.body.append(element);
Point point = new Point(5, 2);
checkPoint(5, 2, point);
« no previous file with comments | « tests/html/cross_frame_test.dart ('k') | tests/html/dart_object_local_storage_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698