http://www.mozilla.org/js/tests/library.html for information about these tests, like how to run them and stuff. According to fur, these tests should not get checked out when you check out Mozilla -- you'd have to specifically check out mozilla/js/tests to get all these files. git-svn-id: svn://10.0.0.236/trunk@26348 18797224-902f-48f8-a5cc-f745e15eee43
116 lines
3.4 KiB
JavaScript
116 lines
3.4 KiB
JavaScript
/* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "License"); you may not use this file except in
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS"
|
|
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing rights and limitations
|
|
* under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released March
|
|
* 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
*
|
|
*/
|
|
/**
|
|
File Name: 10.1.5-1.js
|
|
ECMA Section: 10.1.5 Global Object
|
|
Description:
|
|
There is a unique global object which is created before control enters
|
|
any execution context. Initially the global object has the following
|
|
properties:
|
|
|
|
Built-in objects such as Math, String, Date, parseInt, etc. These have
|
|
attributes { DontEnum }.
|
|
|
|
Additional host defined properties. This may include a property whose
|
|
value is the global object itself, for example window in HTML.
|
|
|
|
As control enters execution contexts, and as ECMAScript code is executed,
|
|
additional properties may be added to the global object and the initial
|
|
properties may be changed.
|
|
|
|
Author: christine@netscape.com
|
|
Date: 12 november 1997
|
|
*/
|
|
var SECTION = "10.5.1-1";
|
|
var VERSION = "ECMA_1";
|
|
startTest();
|
|
|
|
writeHeaderToLog( SECTION + " Global Ojbect");
|
|
|
|
var testcases = getTestCases();
|
|
|
|
if ( Object == null ) {
|
|
testcases[0].reason += " Object == null" ;
|
|
}
|
|
if ( Function == null ) {
|
|
testcases[0].reason += " Function == null";
|
|
}
|
|
if ( String == null ) {
|
|
testcases[0].reason += " String == null";
|
|
}
|
|
if ( Array == null ) {
|
|
testcases[0].reason += " Array == null";
|
|
}
|
|
if ( Number == null ) {
|
|
testcases[0].reason += " Function == null";
|
|
}
|
|
if ( Math == null ) {
|
|
testcases[0].reason += " Math == null";
|
|
}
|
|
if ( Boolean == null ) {
|
|
testcases[0].reason += " Boolean == null";
|
|
}
|
|
if ( Date == null ) {
|
|
testcases[0].reason += " Date == null";
|
|
}
|
|
/*
|
|
if ( NaN == null ) {
|
|
testcases[0].reason += " NaN == null";
|
|
}
|
|
if ( Infinity == null ) {
|
|
testcases[0].reason += " Infinity == null";
|
|
}
|
|
*/
|
|
if ( eval == null ) {
|
|
testcases[0].reason += " eval == null";
|
|
}
|
|
if ( parseInt == null ) {
|
|
testcases[0].reason += " parseInt == null";
|
|
}
|
|
|
|
if ( testcases[0].reason != "" ) {
|
|
testcases[0].actual = "fail";
|
|
} else {
|
|
testcases[0].actual = "pass";
|
|
}
|
|
testcases[0].expect = "pass";
|
|
|
|
test();
|
|
|
|
function test() {
|
|
for ( tc=0; tc < testcases.length; tc++ ) {
|
|
testcases[tc].passed = writeTestCaseResult(
|
|
testcases[tc].expect,
|
|
testcases[tc].actual,
|
|
testcases[tc].description +" = "+
|
|
testcases[tc].actual );
|
|
|
|
}
|
|
stopTest();
|
|
return ( testcases );
|
|
}
|
|
function getTestCases() {
|
|
var array = new Array();
|
|
var item = 0;
|
|
|
|
array[item++] = new TestCase( "SECTION", "Global Code check" );
|
|
|
|
return ( array );
|
|
}
|