aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js')
-rw-r--r--test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js b/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js
deleted file mode 100644
index 2c07ca976..000000000
--- a/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S8.6.1_A1;
- * @section: 8.6.1, 15.2.2, 15.8;
- * @assertion: A property can have attribute ReadOnly like E in Math;
- * @description: Try change Math.E property;
- * @strict_mode_negative
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S8.6.1_A1",
-
-path: "TestCases/08_Types/8.6_The_Object_Type/8.6.1_Property_Attributes/S8.6.1_A1.js",
-
-assertion: "A property can have attribute ReadOnly like E in Math",
-
-description: "Try change Math.E property",
-
-test: function testcase() {
- var __e = Math.E;
-Math.E=1;
-if (Math.E !==__e){
- $ERROR('#1: __e = Math.E; Math.E=1; Math.E ===__e');
-}
-
- }
-});
-