tor-browser

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

doc-gc-breakpoint-positions.html (304B)


      1 <div>
      2  Here
      3  is
      4  some
      5  stuff
      6  so
      7  that
      8  the
      9  source's
     10  start
     11  line
     12  is
     13  not
     14  one
     15 </div>
     16 <script>
     17 // Make sure the source stays alive.
     18 function foo() {
     19 }
     20 // After the outer script has been GC'ed, breakpoints can't be set here.
     21 var x = null;
     22 setTimeout(() => SpecialPowers.gc(), 0);
     23 </script>