1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
5 es5id: 15.2.3.7-6-a-200
7 Object.defineProperties - 'O' is an Array, 'P' is an array index
8 named property, 'desc' is data descriptor, test updating all
9 attribute values of 'P' (15.4.5.1 step 4.c)
10 includes: [propertyHelper.js]
13 var arr = [1]; // default value of attributes: writable: true, configurable: true, enumerable: true
15 Object.defineProperties(arr, {
24 verifyEqualTo(arr, "0", 1001);
26 verifyNotWritable(arr, "0");
28 verifyNotEnumerable(arr, "0");
30 verifyNotConfigurable(arr, "0");