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

Side by Side Diff: samples/third_party/dromaeo/Dromaeo.dart

Issue 12253011: Reapply remove setInterval. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library dromaeo_test; 1 library dromaeo_test;
2 2
3 import 'dart:html'; 3 import 'dart:html';
4 import 'dart:async';
4 import 'dart:json' as json; 5 import 'dart:json' as json;
5 import 'dart:math' as Math; 6 import 'dart:math' as Math;
6 import 'Suites.dart'; 7 import 'Suites.dart';
7 8
8 main() { 9 main() {
9 new Dromaeo().run(); 10 new Dromaeo().run();
10 } 11 }
11 12
12 class SuiteController { 13 class SuiteController {
13 final SuiteDescription _suiteDescription; 14 final SuiteDescription _suiteDescription;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 } 221 }
221 222
222 Element _byId(String id) { 223 Element _byId(String id) {
223 return document.query('#$id'); 224 return document.query('#$id');
224 } 225 }
225 226
226 int get _suitesTotal { 227 int get _suitesTotal {
227 return _suiteControllers.length; 228 return _suiteControllers.length;
228 } 229 }
229 } 230 }
OLDNEW
« no previous file with comments | « samples/tests/samples/swarm/swarm_test.dart ('k') | samples/third_party/dromaeo/tests/RunnerSuite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698