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