aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.js b/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.js
deleted file mode 100644
index 67b921d61..000000000
--- a/test/suite/sputnik_converted/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.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: S15.2.4.7_A9;
-* @section: 15.2.4.7;
-* @assertion: The Object.prototype.propertyIsEnumerable.length property has the attribute DontDelete;
-* @description: Checking if deleting the Object.prototype.propertyIsEnumerable.length property fails;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.2.4.7_A9",
-
-path: "TestCases/15_Native/15.2_Object_Objects/15.2.4_Properties_of_the_Object_Prototype_Object/15.2.4.7_Object.prototype.propertyIsEnumerable/S15.2.4.7_A9.js",
-
-assertion: "The Object.prototype.propertyIsEnumerable.length property has the attribute DontDelete",
-
-description: "Checking if deleting the Object.prototype.propertyIsEnumerable.length property fails",
-
-test: function testcase() {
- //CHECK#0
-if (!(Object.prototype.propertyIsEnumerable.hasOwnProperty('length'))) {
- $FAIL('#0: the Object.prototype.propertyIsEnumerable has length property');
-}
-
-//CHECK#1
-if (delete Object.prototype.propertyIsEnumerable.length) {
- $ERROR('#1: The Object.prototype.propertyIsEnumerable.length property has the attributes DontDelete');
-}
-//
-
- }
-});
-