diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-11 11:53:11 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-11 11:53:11 -0700 |
commit | 306b4ecb79ffc6afcb7ed991b8edeafb628c1c41 (patch) | |
tree | bf85f6a5bac610ef4cfc65347880eb08c4a20f0a | |
parent | 3b6853f50b2331c2493d6d188c7310c8af699018 (diff) |
show some progress in browser test harness
-rw-r--r-- | tests/browser_harness.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/browser_harness.html b/tests/browser_harness.html index fbe9bcc7..3fbe8646 100644 --- a/tests/browser_harness.html +++ b/tests/browser_harness.html @@ -1,5 +1,6 @@ <html> <body> +<div id="output"></div> <script> var counter = 0; function check() { @@ -8,6 +9,7 @@ try { request.send(null); if (request.responseText != 'False') { + document.getElementById('output').innerHTML += 'opening test window ' + (counter++) + '..<br>'; window.open(request.responseText); } setTimeout(check, 333); |