15.2.3.12-2-a-11.js (418B)
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-11 6 description: Object.isFrozen - 'O' is the Arguments object 7 ---*/ 8 9 var arg; 10 11 (function fun() { 12 arg = arguments; 13 }(1, 2, 3)); 14 15 Object.preventExtensions(arg); 16 17 assert.sameValue(Object.isFrozen(arg), false, 'Object.isFrozen(arg)'); 18 19 reportCompare(0, 0);