summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/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_A8.js
diff options
context:
space:
mode:
Diffstat (limited to 'external/contributions/Google/sputnik_conformance_modified/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_A8.js')
-rw-r--r--external/contributions/Google/sputnik_conformance_modified/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_A8.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/external/contributions/Google/sputnik_conformance_modified/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_A8.js b/external/contributions/Google/sputnik_conformance_modified/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_A8.js
new file mode 100644
index 000000000..f9d07cd2c
--- /dev/null
+++ b/external/contributions/Google/sputnik_conformance_modified/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_A8.js
@@ -0,0 +1,27 @@
+// 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_A8;
+* @section: 15.2.4.7;
+* @assertion: The Object.prototype.propertyIsEnumerable.length property has the attribute DontEnum;
+* @description: Checking if enumerating the Object.prototype.propertyIsEnumerable.length property fails;
+*/
+
+//CHECK#0
+if (!(Object.prototype.propertyIsEnumerable.hasOwnProperty('length'))) {
+ $FAIL('#0: the Object.prototype.propertyIsEnumerable has length property');
+}
+
+
+// CHECK#1
+if (Object.prototype.propertyIsEnumerable.propertyIsEnumerable('length')) {
+ $ERROR('#1: the Object.prototype.propertyIsEnumerable.length property has the attributes DontEnum');
+}
+
+// CHECK#2
+for (p in Object.prototype.propertyIsEnumerable){
+ if (p==="length")
+ $ERROR('#2: the Object.prototype.propertyIsEnumerable.length property has the attributes DontEnum');
+}
+//