tor-browser

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

table-rowspan-001.html (770B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1396218">
      3 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      4 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      5 <div style="columns:2; width:100px; gap:0; column-fill:auto; height:100px; background:red;">
      6  <table cellpadding="0" cellspacing="0">
      7    <tr>
      8      <td style="width:25px; height:20px; background:green;"></td>
      9      <td style="width:25px; height:20px; background:green;"></td>
     10    </tr>
     11    <tr>
     12      <td rowspan="2" style="background:green;"></td>
     13      <td style="height:20px; background:green;"></td>
     14    </tr>
     15    <tr>
     16      <td style="height:160px; background:green;"></td>
     17    </tr>
     18  </table>
     19 </div>