15.2.3.6-4-423.js (764B)
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-423 6 description: > 7 ES5 Attributes - [[Set]] attribute of accessor property ([[Get]] 8 is undefined, [[Set]] is undefined, [[Enumerable]] is true, 9 [[Configurable]] is true) is undefined 10 ---*/ 11 12 var obj = {}; 13 14 Object.defineProperty(obj, "prop", { 15 get: undefined, 16 set: undefined, 17 enumerable: true, 18 configurable: true 19 }); 20 21 var propertyDefineCorrect = obj.hasOwnProperty("prop"); 22 var desc = Object.getOwnPropertyDescriptor(obj, "prop"); 23 24 assert(propertyDefineCorrect, 'propertyDefineCorrect !== true'); 25 assert.sameValue(typeof desc.set, "undefined", 'typeof desc.set'); 26 27 reportCompare(0, 0);