tor-browser

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

bug1356822.js (192B)


      1 const d = 0;
      2 function f() {
      3    var m = Math;
      4    (function () {
      5        d = m;
      6    })()
      7 }
      8 for (var i = 0; i < 4; i++) {
      9    try {
     10 f();
     11    } catch (e) {
     12 continue;
     13    }
     14    throw "Fail";
     15 }