tor-browser

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

586400-1.html (498B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4  <style>
      5    div.spacer {width:20px; height: 20px;}
      6    table {background-color: lime;}
      7    td {background-color: green;}
      8  </style>
      9  <script>
     10    function testIt() {
     11      document.body.offsetWidth;
     12      var table = document.getElementsByTagName("TABLE")[0];
     13      table.setAttribute("cellpadding", "30px");
     14    }
     15  </script>
     16  </head>
     17  <body onload="testIt();">
     18    <table><tr>
     19        <td> <div class="spacer"></div> </td></tr>
     20    </table>
     21  </body>
     22 </html>