15.2.3.12-2-a-1.js (462B)
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.12-2-a-1 6 description: Object.isFrozen - 'P' is own data property 7 ---*/ 8 9 var obj = {}; 10 11 Object.defineProperty(obj, "foo", { 12 value: 12, 13 writable: true, 14 configurable: false 15 }); 16 17 Object.preventExtensions(obj); 18 19 assert.sameValue(Object.isFrozen(obj), false, 'Object.isFrozen(obj)'); 20 21 reportCompare(0, 0);