tor-browser

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

15.3.5.4_2-9gs-strict.js (543B)


      1 'use strict';
      2 // Copyright (c) 2012 Ecma International.  All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 es5id: 15.3.5.4_2-9gs
      7 description: >
      8    Strict mode - checking access to non-strict function caller from
      9    strict function (New'ed Function constructor defined within strict
     10    mode)
     11 flags: [onlyStrict]
     12 ---*/
     13 
     14 var f = new Function("return gNonStrict();");
     15 
     16 assert.throws(TypeError, function() {
     17  f();
     18 });
     19 
     20 function gNonStrict() {
     21  return gNonStrict.caller;
     22 }
     23 
     24 reportCompare(0, 0);