15.2.3.9-2-a-11.js (587B)
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.9-2-a-11 6 description: > 7 Object.freeze - 'P' is own index property of the Arguments object 8 that implements its own [[GetOwnProperty]] 9 includes: [propertyHelper.js] 10 ---*/ 11 12 13 // default [[Configurable]] attribute value of "0": true 14 var argObj = (function() { 15 return arguments; 16 }(1, 2, 3)); 17 18 Object.freeze(argObj); 19 20 verifyProperty(argObj, "0", { 21 value: 1, 22 writable: false, 23 configurable: false, 24 }); 25 26 reportCompare(0, 0);