tor-browser

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

1332939.html (305B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <script type="application/javascript">
      5 
      6 var target = document.createElement("div");
      7 target.foo = 'bar';
      8 var observer = new IntersectionObserver(function () { });
      9 observer.observe(target);
     10 observer.unobserve(target);
     11 observer = null;
     12 target = null;
     13 
     14 </script>
     15 </head>
     16 </html>