js/src/tests/test262/ch10/10.2/10.2.3/S10.2.3_A1.1_T3.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 // Copyright 2009 the Sputnik authors. All rights reserved.
michael@0 2 // This code is governed by the BSD license found in the LICENSE file.
michael@0 3
michael@0 4 /**
michael@0 5 * Global object has properties such as built-in objects such as
michael@0 6 * Math, String, Date, parseInt, etc
michael@0 7 *
michael@0 8 * @path ch10/10.2/10.2.3/S10.2.3_A1.1_T3.js
michael@0 9 * @description Global execution context - Constructor Properties
michael@0 10 */
michael@0 11
michael@0 12 //CHECK#13
michael@0 13 if ( Object === null ) {
michael@0 14 $ERROR("#13: Object === null");
michael@0 15 }
michael@0 16
michael@0 17 //CHECK#14
michael@0 18 if ( Function === null ) {
michael@0 19 $ERROR("#14: Function === null");
michael@0 20 }
michael@0 21
michael@0 22 //CHECK#15
michael@0 23 if ( String === null ) {
michael@0 24 $ERROR("#15: String === null");
michael@0 25 }
michael@0 26
michael@0 27 //CHECK#16
michael@0 28 if ( Number === null ) {
michael@0 29 $ERROR("#16: Number === null");
michael@0 30 }
michael@0 31
michael@0 32 //CHECK#17
michael@0 33 if ( Array === null ) {
michael@0 34 $ERROR("#17: Array === null");
michael@0 35 }
michael@0 36
michael@0 37 //CHECK#18
michael@0 38 if ( Boolean === null ) {
michael@0 39 $ERROR("#20: Boolean === null");
michael@0 40 }
michael@0 41
michael@0 42 //CHECK#18
michael@0 43 if ( Date === null ) {
michael@0 44 $ERROR("#18: Date === null");
michael@0 45 }
michael@0 46
michael@0 47 //CHECK#19
michael@0 48 if ( RegExp === null ) {
michael@0 49 $ERROR("#19: RegExp === null");
michael@0 50 }
michael@0 51
michael@0 52 //CHECK#20
michael@0 53 if ( Error === null ) {
michael@0 54 $ERROR("#20: Error === null");
michael@0 55 }
michael@0 56
michael@0 57 //CHECK#21
michael@0 58 if ( EvalError === null ) {
michael@0 59 $ERROR("#21: EvalError === null");
michael@0 60 }
michael@0 61
michael@0 62 //CHECK#22
michael@0 63 if ( RangeError === null ) {
michael@0 64 $ERROR("#22: RangeError === null");
michael@0 65 }
michael@0 66
michael@0 67 //CHECK#23
michael@0 68 if ( ReferenceError === null ) {
michael@0 69 $ERROR("#23: ReferenceError === null");
michael@0 70 }
michael@0 71
michael@0 72 //CHECK#24
michael@0 73 if ( SyntaxError === null ) {
michael@0 74 $ERROR("#24: SyntaxError === null");
michael@0 75 }
michael@0 76
michael@0 77 //CHECK#25
michael@0 78 if ( TypeError === null ) {
michael@0 79 $ERROR("#25: TypeError === null");
michael@0 80 }
michael@0 81
michael@0 82 //CHECK#26
michael@0 83 if ( URIError === null ) {
michael@0 84 $ERROR("#26: URIError === null");
michael@0 85 }
michael@0 86
michael@0 87

mercurial