15.2.3.6-4-461.js (920B)
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-461 6 description: > 7 ES5 Attributes - property ([[Get]] is undefined, [[Set]] is a 8 Function, [[Enumerable]] is true, [[Configurable]] is true) is 9 deletable 10 ---*/ 11 12 var obj = {}; 13 14 var verifySetFunc = "data"; 15 var setFunc = function(value) { 16 verifySetFunc = value; 17 }; 18 19 Object.defineProperty(obj, "prop", { 20 get: undefined, 21 set: setFunc, 22 enumerable: true, 23 configurable: true 24 }); 25 26 var propertyDefineCorrect = obj.hasOwnProperty("prop"); 27 var desc = Object.getOwnPropertyDescriptor(obj, "prop"); 28 29 delete obj.prop; 30 31 assert(propertyDefineCorrect, 'propertyDefineCorrect !== true'); 32 assert.sameValue(desc.configurable, true, 'desc.configurable'); 33 assert.sameValue(obj.hasOwnProperty("prop"), false, 'obj.hasOwnProperty("prop")'); 34 35 reportCompare(0, 0);