tor-browser

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

bug1379306.html (488B)


      1 <!DOCTYPE html>
      2 <title>Table Cell Testcase, bug 1379306</title>
      3 <style>
      4  table.collapse {
      5    border-collapse: collapse;
      6  }
      7  td {
      8    border: 20px solid #aaa;
      9    width: 120px;
     10    height: 150px;
     11    position: relative;
     12  }
     13  div {
     14    background-color: #000;
     15    position: absolute;
     16    top: 0;
     17    left: 0;
     18    height: 10px;
     19    width: 20px
     20  }
     21 </style>
     22 <h1>Table Cell Testcase, bug 1379306</h1>
     23 
     24 <table class="collapse">
     25  <tr>
     26    <td>
     27      <div></div>
     28    </td>
     29  </tr>
     30 </table>