tor-browser

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

399209-1.html (422B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <style>
      5  table { background: white; }
      6  col { background: green; }
      7  td { color: white; }
      8 </style>
      9 <script>
     10 function boom()
     11 {
     12  var col = document.getElementsByTagName("col")[0];
     13  col.remove();
     14  document.documentElement.className = "";
     15 }
     16 </script>
     17 </head>
     18 <body onload="boom();">
     19 <table>
     20  <col span="3">
     21  <td>One</td>
     22  <td>Two</td>
     23  <td>Three</td>
     24 </body>
     25 </html>