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

Side by Side Diff: samples/third_party/dromaeo/tests/dom-query.dart

Issue 10389097: Move dart:dom to dart:dom_deprecated (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes from review Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #library("dom_query"); 1 #library("dom_query");
2 #import("dart:dom"); 2 #import("dart:dom_deprecated");
3 #import('../common/common.dart'); 3 #import('../common/common.dart');
4 #source("Common.dart"); 4 #source("Common.dart");
5 #source("RunnerSuite.dart"); 5 #source("RunnerSuite.dart");
6 6
7 void main() { 7 void main() {
8 final int num = 40; 8 final int num = 40;
9 9
10 // Try to force real results. 10 // Try to force real results.
11 var ret; 11 var ret;
12 12
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 for (int i = 0; i < num * 20; i++) { 94 for (int i = 0; i < num * 20; i++) {
95 ret = document.getElementsByName('test').length == 0; 95 ret = document.getElementsByName('test').length == 0;
96 ret = document.getElementsByName('test').length == 0; 96 ret = document.getElementsByName('test').length == 0;
97 ret = document.getElementsByName('test').length == 0; 97 ret = document.getElementsByName('test').length == 0;
98 ret = document.getElementsByName('test').length == 0; 98 ret = document.getElementsByName('test').length == 0;
99 ret = document.getElementsByName('test').length == 0; 99 ret = document.getElementsByName('test').length == 0;
100 } 100 }
101 }) 101 })
102 .end(); 102 .end();
103 } 103 }
OLDNEW
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-modify.dart ('k') | samples/third_party/dromaeo/tests/dom-traverse.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698