tor-browser

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

1263845.html (363B)


      1 <!DOCTYPE html>
      2 <div id="wrap" style="height: 200px; background: yellow">
      3  <table style="height: 100%; background: purple">
      4    <tr>
      5      <td>
      6        This is some text
      7      </td>
      8    </tr>
      9  </table>
     10 </div>
     11 <script>
     12  // Make sure we do a layout at the 200px height.
     13  document.body.offsetWidth;
     14  document.getElementById("wrap").style.height = "";
     15 </script>