diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-12 11:32:39 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-12 11:32:39 -0700 |
commit | 064b0c7d73876d06f625018f216d99f07cac2155 (patch) | |
tree | 4c18322665a76c7694c8fdd7585e8f133adfca70 | |
parent | cbe17d420069495ada519737f0f8d7b1fee4b085 (diff) |
nicer browser test harness text
-rw-r--r-- | tests/browser_harness.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/browser_harness.html b/tests/browser_harness.html index 3fbe8646..86f3749f 100644 --- a/tests/browser_harness.html +++ b/tests/browser_harness.html @@ -1,5 +1,9 @@ <html> +<head> + <title>Emscripten Browser Test Harness</title> +</head> <body> +<h2><b>Running tests...</b></h2> <div id="output"></div> <script> var counter = 0; @@ -9,8 +13,8 @@ try { request.send(null); if (request.responseText != 'False') { - document.getElementById('output').innerHTML += 'opening test window ' + (counter++) + '..<br>'; window.open(request.responseText); + document.getElementById('output').innerHTML += 'opened test window ' + (counter++) + '..<br>'; } setTimeout(check, 333); } catch(e) { |