10.6-14-c-1-s.js (411B)
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: 10.6-14-c-1-s 6 description: > 7 [[Enumerable]] attribute value in 'callee' is false 8 includes: [propertyHelper.js] 9 ---*/ 10 11 var argObj = function () { 12 return arguments; 13 } (); 14 15 verifyProperty(argObj, "callee", { 16 enumerable: false, 17 }); 18 19 reportCompare(0, 0);