tor-browser

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

table-cell-breaking-1a.html (699B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3  <meta charset="utf-8">
      4  <title>CSS Fragmentation Test: breaking of an auto block-size table-cell</title>
      5  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      6  <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      7 
      8  <style>
      9  @page { size:5in 3in; margin:0.5in; }
     10 
     11  html, body {
     12    font-size: 12pt; margin: 0;
     13  }
     14 
     15  table {
     16    border-spacing: 0;
     17  }
     18 
     19  td {
     20    width: 1in;
     21    background: green;
     22    padding: 0.25in;
     23    border: 0.25in solid gray;
     24  }
     25  </style>
     26 
     27  <table>
     28    <tbody>
     29      <tr>
     30        <td><div style="height: 2in; background: yellow;"></div></td>
     31      </tr>
     32    </tbody>
     33  </table>
     34 </html>