tor-browser

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

bug1054753.js (211B)


      1 // |jit-test| error: TypeError
      2 g = (function() {
      3    var Int32ArrayView = new Int32Array();
      4    function f() {
      5        Int32ArrayView[Symbol() >> 2]
      6    }
      7    return f;
      8 })();
      9 try {
     10    g();
     11 } catch (e) {}
     12 g();