Remove more recursive calls to startTest. hm..

This is not part of the mozilla build and has no effect on its bustedness.
This commit is contained in:
cbegle%netscape.com 1999-07-16 01:39:07 +00:00
Родитель 49bd3ffac2
Коммит 7f486608b0
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -62,21 +62,17 @@ function TestCase( n, d, e, a ) {
this.passed = getTestCaseResult( this.expect, this.actual );
}
function startTest() {
// JavaScript 1.3 is supposed to be compliant ecma version 1.0
if ( VERSION == "ECMA_1" ) {
version ( "130" );
}
if ( VERSION == "JS1_3" ) {
startTest();
version ( "130" );
}
if ( VERSION == "JS1_2" ) {
startTest();
version ( "120" );
}
if ( VERSION == "JS1_1" ) {
startTest();
version ( "110" );
}
// for ecma version 2.0, we will leave the javascript version to