tor-browser

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

10.4.3-1-44-s.js (568B)


      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.4.3-1-44-s
      6 description: >
      7    Strict Mode - checking 'this' (Anonymous FunctionExpression
      8    defined within an Anonymous FunctionExpression with a strict
      9    directive prologue)
     10 flags: [noStrict]
     11 ---*/
     12 
     13 (function () {
     14    "use strict";
     15    assert.sameValue((function () {
     16        return typeof this;
     17    })(), "undefined");
     18    assert.sameValue(typeof this, "undefined", 'typeof this');
     19 })();
     20 
     21 reportCompare(0, 0);