aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNorbert Lindenberg <ecmascript@lindenbergsoftware.com>2012-07-18 12:32:54 -0700
committerNorbert Lindenberg <ecmascript@lindenbergsoftware.com>2012-07-18 12:32:54 -0700
commit9a4b4011f8b8f3fa9f8b6b5de4713e83f6689ed9 (patch)
tree0be10b2dba7481021af9b1864788479e77b16b69 /test
parentd371b39cb606b6c452c70448892671a74dc1033f (diff)
Got test402 web site into usable shape. Unified headers of test262/402 sites.
- Added table of contents for ECMA-402. - Added ability to load the right table of contents into results display. - Added meaningful text to test402 web page. - Updated test262 web pages for 5.1 edition of ECMA-262. - Unified headers of test262/402 web pages to ECMAScript <area> <test>. - Replaced text logos with styled text. - Decapitalized some text; fixed a typo; expanded an abbreviation. - Fixed a few issues found by W3 HTML validator.
Diffstat (limited to 'test')
-rw-r--r--test/harness/helper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/harness/helper.js b/test/harness/helper.js
index d44f3c329..75a6b93ba 100644
--- a/test/harness/helper.js
+++ b/test/harness/helper.js
@@ -13,13 +13,13 @@ function Presenter() {
table,
backLink,
- globalSection = new Section(null, "0", "ECMA-262"),
+ globalSection = new Section(null, "0", STANDARD),
currentSection = globalSection,
tests = {},
totalTests = 0;
var progressBar;
- TOCFILEPATH = "metadata/ecma-262-toc.xml";
+ TOCFILEPATH = "metadata/" + STANDARD.toLowerCase() + "-toc.xml";
//**INTERFACE****************************************************************
/* Updates progress with the given test, which should have its results in it as well. */
this.addTestResult = function(test) {