15.2.3.7-6-a-265.js (624B)
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-265 6 description: > 7 Object.defineProperties - 'O' is an Array, 'P' is an array index 8 named property, test the length property of 'O' is set as 9 ToUint32('P') + 1 if ToUint32('P') is greater than value of the 10 length property in 'O' (15.4.5.1 step 4.e.ii) 11 ---*/ 12 13 var arr = []; 14 15 Object.defineProperties(arr, { 16 "5": { 17 value: 26 18 } 19 }); 20 21 assert.sameValue(arr.length, 6, 'arr.length'); 22 assert.sameValue(arr[5], 26, 'arr[5]'); 23 24 reportCompare(0, 0);