mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
b176094a3b
Differential Revision: https://phabricator.services.mozilla.com/D148140
29 lines
565 B
HTML
29 lines
565 B
HTML
<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>
|