Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperties / 15.2.3.7-6-a-219.js
blob7e53f2f81fc8ac04b66b80a38fab069a7091f790
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-219
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 true  (15.4.5.1 step 4.c)
10 includes: [propertyHelper.js]
11 ---*/
13 var arr = [];
15 Object.defineProperty(arr, "0", {
16   writable: true
17 });
19 Object.defineProperties(arr, {
20   "0": {
21     writable: true
22   }
23 });
25 verifyProperty(arr, "0", {
26   value: undefined,
27   writable: true,
28   enumerable: false,
29   configurable: false,
30 });
32 reportCompare(0, 0);