table-anonymous-objects-089

Auto-imported from Gecko test infer-cells-3.html

WeasyPrint

This browser

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3 <head>
 4 
 5   <title>CSS Test: Auto-imported from Gecko test infer-cells-3.html</title>
 6   <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu">
 7   <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes">
 8   <meta name="flags" content="">
 9 </head>
10 <body style="font-family: monospace">
11 <p>There should be no red below, except for antialiasing issues.</p>
12 <div style="position: relative; font-size: 2em;">
13 <div style="position: relative; z-index: 1; color: red; padding: 1px;">
14 
15     <span style="display: table-row"> 
16       <!-- Trailing spaces in the spans needed only if the first test in
17            infer-cells-1.html is valid -->
18       <span>Row 1, </span>
19       <span>Col 1</span>
20       <span style="display: table-cell">Row 1, Col 2</span>
21       <span style="display: table-row">Row 1, Col 3</span>
22     </span>
23     <span style="display: table-row"> 
24       <span style="display: table-cell">Row 22, Col 1</span>
25       <span>Row </span>
26       <span>22, </span>
27       <span>Col </span>
28       <span>2</span>
29       <span style="display: table-cell">Row 22, Col 3</span>
30     </span>
31     <span style="display: table-row">
32       <span style="display: table-row-group">Row 333, Col 1</span>
33       <span style="display: table-cell">Row 333, Col 2</span>
34       <span>Row </span>
35       <span>333, </span>
36       <span>Col </span>
37       <span>3</span>
38     </span>
39   </div>
40 <div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
41 
42     <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
43       <tr>
44         <td>Row 1, Col 1</td>
45         <td>Row 1, Col 2</td>
46         <td>Row 1, Col 3</td>
47       </tr>
48       <tr>
49         <td>Row 22, Col 1</td>
50         <td>Row 22, Col 2</td>
51         <td>Row 22, Col 3</td>
52       </tr>
53       <tr>
54         <td>Row 333, Col 1</td>
55         <td>Row 333, Col 2</td>
56         <td>Row 333, Col 3</td>
57       </tr>
58     </table>
59   </div>
60 </div>
61 </body>
62 </html>