tor-browser

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

15.3.2.1-11-9-s.js (487B)


      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.2.1-11-9-s
      6 description: >
      7    Strict Mode - No SyntaxError is thrown if a function is created using
      8    the Function constructor that has three identical parameters and
      9    there is no explicit 'use strict' in the function constructor's
     10    body
     11 ---*/
     12 
     13 var foo = new Function("baz", "baz", "baz", "return 0;");
     14 
     15 reportCompare(0, 0);