tor-browser

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

bug906035.js (202B)


      1 // |jit-test| --ion-eager
      2 function y() { return "foo,bar"; }
      3 function x() {
      4  var z = y().split(',');
      5  for (var i = 0; i < z.length; i++) {}
      6 }
      7 gczeal(2);
      8 Object.prototype.length = function () {};
      9 x();