15.2.3.3-4-231.js (525B)
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.3-4-231 6 description: > 7 Object.getOwnPropertyDescriptor - ensure that 'enumerable' 8 property of returned object is data property with correct 'value' 9 attribute 10 ---*/ 11 12 var obj = { 13 "property": "ownDataProperty" 14 }; 15 16 var desc = Object.getOwnPropertyDescriptor(obj, "property"); 17 18 assert.sameValue(desc.enumerable, true, 'desc.enumerable'); 19 20 reportCompare(0, 0);