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

Unified Diff: samples/third_party/dromaeo/tests/dom-modify-html.dart

Issue 20847003: Fix Dromaeo performance tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 | samples/third_party/dromaeo/tests/dom-traverse-html.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/dromaeo/tests/dom-modify-html.dart
diff --git a/samples/third_party/dromaeo/tests/dom-modify-html.dart b/samples/third_party/dromaeo/tests/dom-modify-html.dart
index cff2da11c19b253c3584263975a5ed68136f3b77..7599b060bdc4d482e9ce05562343d5009181255d 100644
--- a/samples/third_party/dromaeo/tests/dom-modify-html.dart
+++ b/samples/third_party/dromaeo/tests/dom-modify-html.dart
@@ -65,7 +65,7 @@ void main() {
})
.test('insertBefore', () {
for (int i = 0; i < elems.length; i++)
- document.body.insertBefore(elems[i], document.body.$dom_firstChild);
+ document.body.insertBefore(elems[i], document.body.firstChild);
vsm 2013/07/26 23:22:15 Is this API supposed to be back? Or did I acciden
Emily Fortuna 2013/07/26 23:30:21 Yeah this API got re-exposed a while back (example
})
.end();
}
« no previous file with comments | « no previous file | samples/third_party/dromaeo/tests/dom-traverse-html.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698