tor-browser

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

lexical-shadows-global-var.js (144B)


      1 this.x = "OK";
      2 
      3 for (var i = 0; i < 50; i++) {
      4  assertEq(x, "OK");
      5  if (i === 40) {
      6    this.x = "FAIL";
      7    evaluate("let x = 'OK';");
      8  }
      9 }