tor-browser

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

10.1.1-32-s.js (575B)


      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: 10.1.1-32-s
      6 description: >
      7    Strict Mode - Function code of built-in Function constructor
      8    contains Use Strict Directive which appears at the end of the block
      9 flags: [noStrict]
     10 ---*/
     11 
     12 
     13        var funObj = new Function("a", "eval('public = 1;'); anotherVariable = 2; 'use strict';");
     14        funObj();
     15 
     16 assert.sameValue(public, 1, 'public');
     17 assert.sameValue(anotherVariable, 2, 'anotherVariable');
     18 
     19 reportCompare(0, 0);