tor-browser

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

table-cell-breaking-2b.html (781B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3  <meta charset="utf-8">
      4  <title>CSS Fragmentation Test: breaking of a fixed block-size table-cell box-decoration-break:clone</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    box-decoration-break: clone;
     25  }
     26  </style>
     27 
     28  <table>
     29    <tbody>
     30      <tr>
     31        <td style="height: 2in;"><div style="height: 100%; background: yellow;"></div></td>
     32      </tr>
     33    </tbody>
     34  </table>
     35 </html>