summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/split/checking-if-enumerating-the-string-prototype-split-length-property-fails.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/prototype/split/checking-if-enumerating-the-string-prototype-split-length-property-fails.js')
-rw-r--r--js/src/tests/test262/built-ins/String/prototype/split/checking-if-enumerating-the-string-prototype-split-length-property-fails.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/prototype/split/checking-if-enumerating-the-string-prototype-split-length-property-fails.js b/js/src/tests/test262/built-ins/String/prototype/split/checking-if-enumerating-the-string-prototype-split-length-property-fails.js
new file mode 100644
index 0000000000..a71e5c4d21
--- /dev/null
+++ b/js/src/tests/test262/built-ins/String/prototype/split/checking-if-enumerating-the-string-prototype-split-length-property-fails.js
@@ -0,0 +1,37 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The String.prototype.split.length property has the attribute DontEnum
+es5id: 15.5.4.14_A8
+description: >
+ Checking if enumerating the String.prototype.split.length property
+ fails
+---*/
+
+assert(
+ String.prototype.split.hasOwnProperty('length'),
+ 'String.prototype.split.hasOwnProperty(\'length\') must return true'
+);
+
+assert(
+ !String.prototype.split.propertyIsEnumerable('length'),
+ 'The value of `!String.prototype.split.propertyIsEnumerable(\'length\')` is true'
+);
+
+//
+//////////////////////////////////////////////////////////////////////////////
+
+//////////////////////////////////////////////////////////////////////////////
+// CHECK#2
+var count = 0;
+
+for (var p in String.prototype.split) {
+ if (p === "length") {
+ count++;
+ }
+}
+
+assert.sameValue(count, 0, 'The value of `count` is 0');
+
+reportCompare(0, 0);