Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperty / 15.2.3.6-4-258.js
blob9821d646bbceb57557c82de64acf9b5712b22834
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.6-4-258
6 description: >
7     Object.defineProperty - 'O' is an Array, 'name' is an array index
8     named property, name is data property and 'desc' is data
9     descriptor, test updating the [[Value]] attribute value of 'name'
10     (15.4.5.1 step 4.c)
11 includes: [propertyHelper.js]
12 ---*/
15 var arrObj = [100];
17 Object.defineProperty(arrObj, "0", {
18   value: 200
19 });
20 verifyEqualTo(arrObj, "0", 200);
22 verifyWritable(arrObj, "0");
24 verifyEnumerable(arrObj, "0");
26 verifyConfigurable(arrObj, "0");
28 reportCompare(0, 0);