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