aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js')
-rw-r--r--test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js46
1 files changed, 0 insertions, 46 deletions
diff --git a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js b/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js
deleted file mode 100644
index 1a1edfada..000000000
--- a/test/suite/sputnik_converted/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S10.1.5_A1.2_T1;
- * @section: 10.1.5, 15.1;
- * @assertion: Global object has properties such as built-in objects such as
- * Math, String, Date, parseInt, etc;
- * @description: Function execution context - Value Properties;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S10.1.5_A1.2_T1",
-
-path: "TestCases/10_Execution_Contexts/10.1_Definitions/10.1.5_Global_Object/S10.1.5_A1.2_T1.js",
-
-assertion: "Global object has properties such as built-in objects such as",
-
-description: "Function execution context - Value Properties",
-
-test: function testcase() {
- function test() {
- //CHECK#1
- if ( NaN === null ) {
- $ERROR("#1: NaN === null");
- }
-
- //CHECK#2
- if ( Infinity === null ) {
- $ERROR("#2: Infinity === null");
- }
-
- //CHECK#3
- if ( undefined === null ) {
- $ERROR("#3: undefined === null");
- }
-}
-
-test();
-
- }
-});
-