Backed out 6 changesets (bug 1921980) for causing wrench bustages. CLOSED TREE
[gecko.git] / layout / reftests / pagination / table-cell-breaking-1b.html
blobc8e985407bb7e21b4533dee95a890ab1b40c00e2
1 <!DOCTYPE html>
2 <html class="reftest-paged">
3 <meta charset="utf-8">
4 <title>CSS Fragmentation Test: breaking of a fixed block-size table-cell</title>
5 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
6 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
8 <style>
9 @page { size:5in 3in; margin:0.5in; }
11 html, body {
12 font-size: 12pt; margin: 0;
15 table {
16 border-spacing: 0;
19 td {
20 width: 1in;
21 background: green;
22 padding: 0.25in;
23 border: 0.25in solid gray;
25 </style>
27 <table>
28 <tbody>
29 <tr>
30 <td style="height: 2in;"><div style="height: 100%; background: yellow;"></div></td>
31 </tr>
32 </tbody>
33 </table>
34 </html>