tor-browser

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

multi-03.js (274B)


      1 /* Exercise the path where we want to collect a new compartment in the middle of incremental GC. */
      2 
      3 var g1 = newGlobal();
      4 var g2 = newGlobal();
      5 
      6 schedulezone(g1);
      7 schedulezone(g2);
      8 gcslice(0); // Start IGC, but don't mark anything.
      9 schedulezone(g1);
     10 gcslice(1);
     11 gcslice();