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

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

Issue 9374026: Move dromaeo to third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Moved Dromaeo to third party. Created 8 years, 10 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: samples/third_party/dromaeo/tests/dom-traverse.dart
diff --git a/client/dom/benchmarks/dromaeo/tests/dom-traverse.dart b/samples/third_party/dromaeo/tests/dom-traverse.dart
similarity index 96%
rename from client/dom/benchmarks/dromaeo/tests/dom-traverse.dart
rename to samples/third_party/dromaeo/tests/dom-traverse.dart
index 0d3cf2259e5ce594ec3654c40ef88989869bed34..6db8d04c07a710bde94880e05d42f1914246c71d 100644
--- a/client/dom/benchmarks/dromaeo/tests/dom-traverse.dart
+++ b/samples/third_party/dromaeo/tests/dom-traverse.dart
@@ -1,6 +1,6 @@
#library("dom-traverse.dart");
#import("dart:dom");
-#import('../../common/common.dart');
+#import('../common/common.dart');
#import('runner.dart');
@@ -68,7 +68,7 @@ void main() {
})
.test('previousSibling', () {
for (int i = 0; i < num * 2; i++) {
- Node cur = document.body.firstChild;
+ Node cur = document.body.lastChild;
while (cur !== null) {
cur = cur.previousSibling;
}
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-query.html ('k') | samples/third_party/dromaeo/tests/dom-traverse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698