15.2.3.6-3-68.js (611B)
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.6-3-68 6 description: > 7 Object.defineProperty - value of 'enumerable' property in 8 'Attributes' is an Arguments Object (8.10.5 step 3.b) 9 ---*/ 10 11 var obj = {}; 12 var accessed = false; 13 var argObj = (function() { 14 return arguments; 15 })(0, 1, 2); 16 17 Object.defineProperty(obj, "property", { 18 enumerable: argObj 19 }); 20 21 for (var prop in obj) { 22 if (prop === "property") { 23 accessed = true; 24 } 25 } 26 27 assert(accessed, 'accessed !== true'); 28 29 reportCompare(0, 0);