15.3.5.4_2-12gs.js (477B)
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.3.5.4_2-12gs 6 description: > 7 Strict mode - checking access to non-strict function caller from 8 non-strict function (eval includes strict directive prologue) 9 flags: [noStrict] 10 features: [caller] 11 ---*/ 12 13 eval("\"use strict\";\ngNonStrict();"); 14 15 16 function gNonStrict() { 17 return gNonStrict.caller; 18 } 19 20 reportCompare(0, 0);