summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/prop-desc.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/prop-desc.js')
-rw-r--r--js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/prop-desc.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/prop-desc.js b/js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/prop-desc.js
new file mode 100644
index 0000000000..cc007d0bbd
--- /dev/null
+++ b/js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/prop-desc.js
@@ -0,0 +1,25 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 25.1.2.1
+description: Property descriptor
+info: |
+ ES6 Section 17
+
+ Every other data property described in clauses 18 through 26 and in Annex
+ B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
+ [[Configurable]]: true } unless otherwise specified.
+features: [Symbol.iterator]
+includes: [propertyHelper.js]
+---*/
+
+var IteratorPrototype = Object.getPrototypeOf(
+ Object.getPrototypeOf([][Symbol.iterator]())
+);
+
+assert.sameValue(typeof IteratorPrototype[Symbol.iterator], 'function');
+verifyNotEnumerable(IteratorPrototype, Symbol.iterator);
+verifyWritable(IteratorPrototype, Symbol.iterator);
+verifyConfigurable(IteratorPrototype, Symbol.iterator);
+
+reportCompare(0, 0);