13.2-15-s.js (448B)
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: 13.2-15-s 6 description: > 7 StrictMode - enumerating over a function object looking for 8 'arguments' fails outside of the function 9 ---*/ 10 11 var foo = new Function("'use strict';"); 12 13 for (var tempIndex in foo) { 14 assert.notSameValue(tempIndex, "arguments", 'tempIndex'); 15 } 16 17 reportCompare(0, 0);