tor-browser

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

bug1207413.js (192B)


      1 function first(a) {
      2    return a[0];
      3 }
      4 
      5 try {
      6    first([function() {}]);
      7    first([function() {}]);
      8    oomAfterAllocations(50);
      9    first([function() {}]);
     10 } catch(e) {
     11    // ignore oom
     12 }