tor-browser

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

popup_blocker_10_popups.html (279B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset="UTF-8">
      5    <title>Page creating ten popups</title>
      6  </head>
      7  <body>
      8    <script type="text/javascript">
      9      for (let i = 0; i < 10; i++) {
     10        window.open("https://example.com");
     11      }
     12    </script>
     13  </body>
     14 </html>