Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /**
8 File Name: 10.1.5-2.js
9 ECMA Section: 10.1.5 Global Object
10 Description:
11 There is a unique global object which is created before control enters
12 any execution context. Initially the global object has the following
13 properties:
15 Built-in objects such as Math, String, Date, parseInt, etc. These have
16 attributes { DontEnum }.
18 Additional host defined properties. This may include a property whose
19 value is the global object itself, for example window in HTML.
21 As control enters execution contexts, and as ECMAScript code is executed,
22 additional properties may be added to the global object and the initial
23 properties may be changed.
25 Author: christine@netscape.com
26 Date: 12 november 1997
27 */
28 var SECTION = "10.5.1-2";
29 var VERSION = "ECMA_1";
30 startTest();
32 writeHeaderToLog( SECTION + " Global Object");
34 new TestCase( "SECTION", "Eval Code check" );
36 var EVAL_STRING = 'if ( Object == null ) { gTestcases[0].reason += " Object == null" ; }' +
37 'if ( Function == null ) { gTestcases[0].reason += " Function == null"; }' +
38 'if ( String == null ) { gTestcases[0].reason += " String == null"; }' +
39 'if ( Array == null ) { gTestcases[0].reason += " Array == null"; }' +
40 'if ( Number == null ) { gTestcases[0].reason += " Function == null";}' +
41 'if ( Math == null ) { gTestcases[0].reason += " Math == null"; }' +
42 'if ( Boolean == null ) { gTestcases[0].reason += " Boolean == null"; }' +
43 'if ( Date == null ) { gTestcases[0].reason += " Date == null"; }' +
44 'if ( eval == null ) { gTestcases[0].reason += " eval == null"; }' +
45 'if ( parseInt == null ) { gTestcases[0].reason += " parseInt == null"; }' ;
47 eval( EVAL_STRING );
49 /*
50 if ( NaN == null ) {
51 gTestcases[0].reason += " NaN == null";
52 }
53 if ( Infinity == null ) {
54 gTestcases[0].reason += " Infinity == null";
55 }
56 */
58 if ( gTestcases[0].reason != "" ) {
59 gTestcases[0].actual = "fail";
60 } else {
61 gTestcases[0].actual = "pass";
62 }
63 gTestcases[0].expect = "pass";
65 test();