15.2.3.6-4-385.js (563B)
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-385 6 description: > 7 ES5 Attributes - [[Value]] attribute of data property is a generic 8 object 9 ---*/ 10 11 var obj = {}; 12 var tempObj = { 13 testproperty: 100 14 }; 15 16 Object.defineProperty(obj, "prop", { 17 value: tempObj 18 }); 19 20 var desc = Object.getOwnPropertyDescriptor(obj, "prop"); 21 22 assert.sameValue(obj.prop, tempObj, 'obj.prop'); 23 assert.sameValue(desc.value, tempObj, 'desc.value'); 24 25 reportCompare(0, 0);