tor-browser

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

1353529-inner.html (253B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body onload="boom()">
      4 <div id="target"></div>
      5 <script>
      6    function boom() {
      7        var io = new IntersectionObserver(function () { }, { });
      8        io.observe(document.getElementById('target'));
      9    }
     10 </script>
     11 </body>
     12 </html>