tor-browser

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

bug819611.js (113B)


      1 // |jit-test| --ion-eager
      2 x = [0, 0]
      3 Object.freeze(x).map(function() {
      4    x.length = 6
      5 })
      6 assertEq(x.length,2);