diff options
-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); |