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

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

Issue 12258020: Reverting setTimeout removal. (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';
5 import 'dart:json' as json; 4 import 'dart:json' as json;
6 import 'dart:math' as Math; 5 import 'dart:math' as Math;
7 import 'Suites.dart'; 6 import 'Suites.dart';
8 7
9 main() { 8 main() {
10 new Dromaeo().run(); 9 new Dromaeo().run();
11 } 10 }
12 11
13 class SuiteController { 12 class SuiteController {
14 final SuiteDescription _suiteDescription; 13 final SuiteDescription _suiteDescription;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 } 220 }
222 221
223 Element _byId(String id) { 222 Element _byId(String id) {
224 return document.query('#$id'); 223 return document.query('#$id');
225 } 224 }
226 225
227 int get _suitesTotal { 226 int get _suitesTotal {
228 return _suiteControllers.length; 227 return _suiteControllers.length;
229 } 228 }
230 } 229 }
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