15.2.3.7-6-a-210.js (705B)
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-210 6 description: > 7 Object.defineProperties - 'O' is an Array, 'name' is an array 8 index property, both the [[Value]] field of 'desc' and the 9 [[Value]] attribute value of 'name' are undefined (15.4.5.1 step 10 4.c) 11 includes: [propertyHelper.js] 12 ---*/ 13 14 var arr = []; 15 16 Object.defineProperty(arr, "0", { 17 value: undefined 18 }); 19 20 Object.defineProperties(arr, { 21 "0": { 22 value: undefined 23 } 24 }); 25 26 verifyProperty(arr, "0", { 27 value: undefined, 28 writable: false, 29 enumerable: false, 30 configurable: false, 31 }); 32 33 reportCompare(0, 0);