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

Side by Side Diff: samples/third_party/dromaeo/web/htmlrunner.js

Issue 199003005: Package-ify Dromaeo and browser controller functionality (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 // An version of Dromaeo's original htmlrunner adapted for the 1 // An version of Dromaeo's original htmlrunner adapted for the
2 // Dart-based test driver. 2 // Dart-based test driver.
3 3
4 var _operations = []; 4 var _operations = [];
5 var _N_RUNS = 5; 5 var _N_RUNS = 5;
6 var _nRanTests = 0; 6 var _nRanTests = 0;
7 var _nTests = 0; 7 var _nTests = 0;
8 var _T_DISTRIBUTION = 2.776; 8 var _T_DISTRIBUTION = 2.776;
9 9
10 function startTest() { 10 function startTest() {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 }); 133 });
134 } 134 }
135 135
136 function endTest() { 136 function endTest() {
137 _postMessage('inited', { 'nTests': _nTests }); 137 _postMessage('inited', { 'nTests': _nTests });
138 } 138 }
139 139
140 function prep(fn) { 140 function prep(fn) {
141 _operations.push(fn); 141 _operations.push(fn);
142 } 142 }
OLDNEW
« no previous file with comments | « samples/third_party/dromaeo/web/favicon.png ('k') | samples/third_party/dromaeo/web/images/bg.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698