tor-browser

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

bug1514682.js (235B)


      1 function f(o, n) {
      2    if (n) {
      3        o[n] = true;
      4    } else {
      5        o.x = true;
      6    }
      7 }
      8 
      9 // Warm up object so HadElementsAccess check will trip next
     10 var o = {};
     11 for (var i = 0; i < 43; ++i) {
     12    o["x" + i] = true;
     13 }
     14 
     15 f(o, "y");