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

Unified Diff: tools/testing/dart/test_controller.js

Issue 632283002: Add support in test scripts backend for simple HTML tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add DOM to status and periodic status messages. Created 6 years, 2 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
« no previous file with comments | « tools/testing/dart/browser_controller.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_controller.js
diff --git a/tools/testing/dart/test_controller.js b/tools/testing/dart/test_controller.js
index e952aaffa08f70b636f317474627ab34fe45a4ee..8d3edb8d441d77c78b93f036da34ebca65dba3e6 100644
--- a/tools/testing/dart/test_controller.js
+++ b/tools/testing/dart/test_controller.js
@@ -34,7 +34,7 @@
var recordedEventList = [];
var timestampOfFirstEvent = null;
-var STATUS_UPDATE_INTERVALL = 10000;
+var STATUS_UPDATE_INTERVAL = 10000;
function getCurrentTimestamp() {
if (timestampOfFirstEvent == null) {
@@ -200,7 +200,7 @@ function notifyDone(testOutcome) {
// Repeatedly send back the current status of this test.
function sendStatusUpdate(isFirstMessage) {
notifyUpdate('', isFirstMessage, true, false);
- setTimeout(function() {sendStatusUpdate(false)}, STATUS_UPDATE_INTERVALL);
+ setTimeout(function() {sendStatusUpdate(false)}, STATUS_UPDATE_INTERVAL);
}
// We call notifyStart here to notify the encapsulating browser.
« no previous file with comments | « tools/testing/dart/browser_controller.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698