tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

13.2-11-s.js (438B)


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