gecko-dev/layout/reftests/pagination/table-caption-splitaftercaption-8.html
Tobias Schneider 3880ddff03 Bug 1382327 - (reftest) Rename reftest-print to reftest-paged. r=dbaron
--HG--
extra : rebase_source : c4e47e2de8d615c77e7e9ce88f6b21c9d15c92e4
2017-07-26 22:53:46 -07:00

25 lines
797 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US" class="reftest-paged">
<head>
<style type="text/css">
div.filler {height:5px; width: 50px; border:thin solid blue;}
div.spacer { height: 0px; width: 0px; padding: 20px;border:thin solid green;}
tfoot div {border-color:orange;}
caption {margin-top: 5px; margin-bottom:5px; caption-side:top}
table {margin-top: 5px; margin-bottom:5px}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<caption><div class="spacer" style="padding-top:160px"></div></caption>
<tbody>
<tr><td><div class="spacer"></div></td></tr>
<tr><td><div class="spacer"></div></td></tr>
</tbody>
<tfoot><tr><td><div class="spacer"></div></td></tr></tfoot>
</table>
</body>
</html>