tor-browser

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

404666-2.html (411B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style>
      5 table {background-color:green}
      6 col {background-color:red}
      7 td { color: white }
      8 </style>
      9 <script>
     10 function runTest()
     11 {
     12  document.body.offsetHeight;
     13  document.getElementById("col").style.visibility = "collapse";
     14 }
     15 </script>
     16 </head>
     17 <body onload="runTest()">
     18 <table>
     19  <col id="col" span="2">
     20  <tr>
     21   <td>One</td>
     22   <td>Two</td>
     23   <td>Three</td>
     24  </tr>
     25 </table>
     26 </html>