diff --git a/build/test/data/testrunner.js b/build/test/data/testrunner.js
index c3afea33..3888ad9b 100644
--- a/build/test/data/testrunner.js
+++ b/build/test/data/testrunner.js
@@ -55,7 +55,7 @@ function runTest() {
_config.stats.bad, ' tests of ', _config.stats.all, ' failed.
']
.join(''))
.appendTo("body");
- $("").addClass(_config.stats.bad ? "fail" : "pass").insertAfter("h1");
+ $("#banner").addClass(_config.stats.bad ? "fail" : "pass");
});
}
diff --git a/build/test/data/testsuite.css b/build/test/data/testsuite.css
index 58eb610f..b42f2b79 100644
--- a/build/test/data/testsuite.css
+++ b/build/test/data/testsuite.css
@@ -7,6 +7,6 @@ h2 { padding: 10px; background-color: #eee; color: black; margin: 0; font-size:
.fail { color: red; }
p.result { margin-left: 1em; }
-#banner { height: 2em; }
-div.pass { background-color: green; }
-div.fail { background-color: red; }
\ No newline at end of file
+#banner { height: 2em; border-bottom: 1px solid white; }
+h2.pass { background-color: green; }
+h2.fail { background-color: red; }
\ No newline at end of file
diff --git a/build/test/index.html b/build/test/index.html
index db6cfd81..24d20646 100644
--- a/build/test/index.html
+++ b/build/test/index.html
@@ -11,7 +11,8 @@
-
jQuery Test Suite - Core
+ jQuery Test Suite - Core
+