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