tor-browser

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

1369985-1-ref.html (392B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <style>
      4 body {
      5  padding: 0;
      6  margin: 0;
      7  font-size: 2px;
      8  line-height: 1;
      9 }
     10 p {
     11  padding: 0;
     12  margin: 0;
     13 }
     14 </style>
     15 <body>
     16 <script>
     17  let x = '<p>' + '\u2588'.repeat(100) + '</p>';
     18  for (let i = 0; i < 99; i++) {
     19    document.write(x)
     20  }
     21  document.write('<p>あ\nあ</p>');
     22  for (let i = 0; i < 300; i++) {
     23    document.write(x)
     24  }
     25 </script>