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