зеркало из https://github.com/mozilla/pjs.git
92 строки
3.4 KiB
JavaScript
92 строки
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-4.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-4";
|
|
var VERSION = "ECMA_1";
|
|
startTest();
|
|
|
|
writeHeaderToLog( SECTION + " Global Ojbect");
|
|
|
|
var testcases = getTestCases();
|
|
|
|
var EVAL_STRING = '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 ( eval == null ) { testcases[0].reason += " eval == null"; }' +
|
|
'if ( parseInt == null ) { testcases[0].reason += " parseInt == null"; }' ;
|
|
|
|
var NEW_FUNCTION = new Function( EVAL_STRING );
|
|
|
|
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 + " "+
|
|
testcases[tc].reason );
|
|
|
|
testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
|
|
}
|
|
stopTest();
|
|
return ( testcases );
|
|
}
|
|
function getTestCases() {
|
|
var array = new Array();
|
|
var item = 0;
|
|
|
|
array[item++] = new TestCase( "SECTION", "Anonymous Code check" );
|
|
|
|
return ( array );
|
|
}
|