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-220.js
blobe655774ae22cbc4a773bd2c825e3ea63cab81876
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-220
6 description: >
7     Object.defineProperties - 'O' is an Array, 'P' is an array index
8     property that already exists on 'O' with [[Writable]] true, and
9     the [[Writable]] field of 'desc' is false  (15.4.5.1 step 4.c)
10 includes: [propertyHelper.js]
11 ---*/
13 var arr = [];
15 Object.defineProperty(arr, "0", {
16   writable: true,
17   configurable: true
18 });
20 Object.defineProperties(arr, {
21   "0": {
22     writable: false
23   }
24 });
25 verifyEqualTo(arr, "0", undefined);
27 verifyNotWritable(arr, "0");
29 verifyNotEnumerable(arr, "0");
31 verifyConfigurable(arr, "0");
33 reportCompare(0, 0);