15.2.3.6-4-62.js (562B)
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-62 6 description: > 7 Object.defineProperty - both desc.value and name.value are null 8 (8.12.9 step 6) 9 includes: [propertyHelper.js] 10 ---*/ 11 12 13 var obj = {}; 14 15 Object.defineProperty(obj, "foo", { 16 value: null 17 }); 18 19 Object.defineProperty(obj, "foo", { 20 value: null 21 }); 22 23 verifyProperty(obj, "foo", { 24 value: null, 25 writable: false, 26 enumerable: false, 27 configurable: false, 28 }); 29 30 reportCompare(0, 0);