15.2.3.7-6-a-191.js (768B)
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-191 6 description: > 7 Object.defineProperties - 'O' is an Array, 'P' is an array index 8 property, 'P' is inherited accessor property (15.4.5.1 step 4.c) 9 ---*/ 10 11 Object.defineProperty(Array.prototype, "0", { 12 get: function() { 13 return 11; 14 }, 15 configurable: true 16 }); 17 18 var arr = []; 19 20 Object.defineProperties(arr, { 21 "0": { 22 get: function() { 23 return 12; 24 }, 25 configurable: false 26 } 27 }); 28 29 assert(arr.hasOwnProperty("0"), 'arr.hasOwnProperty("0") !== true'); 30 assert.sameValue(arr[0], 12, 'arr[0]'); 31 assert.sameValue(Array.prototype[0], 11, 'Array.prototype[0]'); 32 33 reportCompare(0, 0);