15.2.3.12-2-a-13.js (479B)
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-13 6 description: Object.isFrozen - 'O' is a Function object 7 ---*/ 8 9 var obj = function() {}; 10 11 Object.defineProperty(obj, "property", { 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);