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-248.js
blob547713544d10728293e656ca95ae5a99ebc4799d
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-248
6 description: >
7     Object.defineProperties - 'O' is an Array, 'P' is an array index
8     named property that already exists on 'O' is data property and
9     'desc' is data descriptor, test setting the [[Value]] attribute
10     value of 'P' as undefined  (15.4.5.1 step 4.c)
11 includes: [propertyHelper.js]
12 ---*/
15 var arr = [12];
17 Object.defineProperties(arr, {
18   "0": {
19     value: undefined
20   }
21 });
22 verifyEqualTo(arr, "0", undefined);
24 verifyWritable(arr, "0");
26 verifyEnumerable(arr, "0");
28 verifyConfigurable(arr, "0");
30 reportCompare(0, 0);