15.2.3.7-6-a-200.js (767B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.2.3.7-6-a-200 6 description: > 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] 11 ---*/ 12 13 var arr = [1]; // default value of attributes: writable: true, configurable: true, enumerable: true 14 15 Object.defineProperties(arr, { 16 "0": { 17 value: 1001, 18 writable: false, 19 enumerable: false, 20 configurable: false 21 } 22 }); 23 24 verifyProperty(arr, "0", { 25 value: 1001, 26 writable: false, 27 enumerable: false, 28 configurable: false, 29 }); 30 31 reportCompare(0, 0);