15.2.3.6-4-39.js (625B)
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-39 6 description: > 7 Object.defineProperty - 'O' is a Date object that uses Object's 8 [[GetOwnProperty]] method to access the 'name' property (8.12.9 9 step 1) 10 ---*/ 11 12 var desc = new Date(0); 13 14 Object.defineProperty(desc, "foo", { 15 value: 12, 16 configurable: false 17 }); 18 assert.throws(TypeError, function() { 19 Object.defineProperty(desc, "foo", { 20 value: 11, 21 configurable: true 22 }); 23 }); 24 assert.sameValue(desc.foo, 12, 'desc.foo'); 25 26 reportCompare(0, 0);