tor-browser

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

1767364-3.html (565B)


      1 <html class="reftest-paged">
      2 <head>
      3 <title>Testcase bug 1767364 - page breaks & empty thead causing data loss and asserts</title>
      4 <style>
      5  .bb {
      6    break-before: page;
      7  }
      8  .red {
      9    border-top: 1px red solid;
     10    border-bottom: 1px red solid;
     11  }
     12  .green {
     13    border-top: 1px green solid;
     14    border-bottom: 1px green solid;
     15  }
     16  .blue {
     17    border-top: 1px blue solid;
     18    border-bottom: 1px blue solid;
     19  }
     20 </style>
     21 </head>
     22 <body>
     23 <div class="bb red">
     24 <table class="bb green">
     25  <thead></thead>
     26  <tfoot><td class="blue">data</td></tfoot>
     27 </table>
     28 </div>