aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js')
-rw-r--r--test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js b/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js
deleted file mode 100644
index e6990b2a5..000000000
--- a/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js
+++ /dev/null
@@ -1,37 +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.2.1_A1_T1;
- * @section: 10.2.1;
- * @assertion: Variable instantiation is performed using the global object as
- * the variable object and using property attributes { DontDelete };
- * @description: Checking if deleting variable x, that is defined as var x = 1, fails;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S10.2.1_A1_T1",
-
-path: "TestCases/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.1_Global_Code/S10.2.1_A1_T1.js",
-
-assertion: "Variable instantiation is performed using the global object as",
-
-description: "Checking if deleting variable x, that is defined as var x = 1, fails",
-
-test: function testcase() {
- var x = 1;
-
-if (this.x !== 1) {
- $ERROR("#1: variable x is a property of global object");
-}
-
-if(delete this.x !== false){
- $ERROR("#2: variable x has property attribute DontDelete");
-}
-
- }
-});
-