10.6-6-2.js (442B)
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-6-2 6 description: "'length' property of arguments object has correct attributes" 7 includes: [propertyHelper.js] 8 ---*/ 9 10 function testcase() { 11 verifyProperty(arguments, "length", { 12 writable: true, 13 enumerable: false, 14 configurable: true, 15 }); 16 } 17 testcase(); 18 19 reportCompare(0, 0);