Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperties / 15.2.3.7-6-a-217.js
blob94e975a2cb419613ab57f5d837976d3d83214553
1 // Copyright (c) 2012 Ecma International.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 15.2.3.7-6-a-217
6 description: >
7     Object.defineProperties - 'O' is an Array, 'name' is an array
8     index property, the [[Value]] field of 'desc' and the [[Value]]
9     attribute value of 'name' are two booleans with same value
10     (15.4.5.1 step 4.c)
11 includes: [propertyHelper.js]
12 ---*/
14 var arr = [];
16 Object.defineProperty(arr, "0", {
17   value: true
18 });
20 Object.defineProperties(arr, {
21   "0": {
22     value: true
23   }
24 });
25 verifyEqualTo(arr, "0", true);
27 verifyNotWritable(arr, "0");
29 verifyNotEnumerable(arr, "0");
31 verifyNotConfigurable(arr, "0");
33 reportCompare(0, 0);