15.2.3.6-4-483.js (899B)
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-483 6 description: > 7 ES5 Attributes - success to update [[Configurable]] attribute of 8 accessor property ([[Get]] is undefined, [[Set]] is a Function, 9 [[Enumerable]] is false, [[Configurable]] is true) to different 10 value 11 includes: [propertyHelper.js] 12 ---*/ 13 14 var obj = {}; 15 16 var verifySetFunc = "data"; 17 var setFunc = function(value) { 18 verifySetFunc = value; 19 }; 20 21 Object.defineProperty(obj, "prop", { 22 get: undefined, 23 set: setFunc, 24 enumerable: false, 25 configurable: true 26 }); 27 var desc1 = Object.getOwnPropertyDescriptor(obj, "prop"); 28 29 Object.defineProperty(obj, "prop", { 30 configurable: false 31 }); 32 33 assert.sameValue(desc1.configurable, true); 34 35 verifyProperty(obj, "prop", { 36 configurable: false, 37 }); 38 39 reportCompare(0, 0);