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-256.js
blob5f2eec519b823d461adc356b5903c7c01a12f7f3
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-256
6 description: >
7     Object.defineProperties - 'O' is an Array, 'P' is an array index
8     named property that already exists on 'O' is accessor property and
9     'desc' is accessor descriptor, test updating the [[Get]] attribute
10     value of 'P' from undefined to function (15.4.5.1 step 4.c)
11 includes: [propertyHelper.js]
12 ---*/
15 var arr = [];
17 function get_fun() {
18   return 36;
21 Object.defineProperty(arr, "0", {
22   get: undefined,
23   configurable: true
24 });
26 Object.defineProperties(arr, {
27   "0": {
28     get: get_fun
29   }
30 });
31 verifyEqualTo(arr, "0", get_fun());
33 verifyNotEnumerable(arr, "0");
35 verifyConfigurable(arr, "0");
37 reportCompare(0, 0);