gecko-dev/layout/reftests/pagination/contain-size-break-003.html
Morgan Rae Reschenberg 29036db401 Bug 1470329 - Change ReflowInput to have unconstrained BSize for size-contained elements, add reftests r=dholbert
MozReview-Commit-ID: 6IRAi8iScwy

--HG--
extra : rebase_source : 13f3de7149f82aa6d742eda957f1327d41fcd5ef
2018-07-02 09:43:03 -07:00

21 lines
414 B
HTML

<!DOCTYPE html>
<html class="reftest-paged">
<head>
<meta charset="utf-8">
<title>CSS Test: 'contain: size' should not affect breaking in tables or table elements.</title>
<style>
.contain {
contain:size;
}
</style>
</head>
<body>
<table class="contain">
<tr>
<td style="height:4in; width: 50px; background:orange;">
</td>
</tr>
</table>
</body>
</html>