15.2.3.6-4-301.js (839B)
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-4-301 6 description: > 7 Object.defineProperty - 'O' is an Arguments object, 'name' is an 8 array index named property of 'O' but not defined in 9 [[ParameterMap]] of 'O', and 'desc' is data descriptor, test 10 'name' is defined in 'O' with all correct attribute values (10.6 11 [[DefineOwnProperty]] step 3) 12 includes: [propertyHelper.js] 13 ---*/ 14 15 (function() { 16 delete arguments[0]; 17 Object.defineProperty(arguments, "0", { 18 value: 10, 19 writable: false, 20 enumerable: false, 21 configurable: false 22 }); 23 24 verifyProperty(arguments, "0", { 25 value: 10, 26 writable: false, 27 enumerable: false, 28 configurable: false, 29 }); 30 }(0, 1, 2)); 31 32 reportCompare(0, 0);