table-anonymous-objects-155.xht (2159B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Auto-imported from Gecko test white-space-1.html</title> 5 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/> 7 <link rel="match" href="reference/no_red_3x3_monospace_multi_table-ref.xht"/> 8 <meta name="flags" content='dom'/> 9 10 <script type="text/javascript"><![CDATA[ 11 function doTest() { 12 var n = document.getElementById("t").nextSibling; 13 n.data = "Row 22, Col 1Row 22, Col 2Row 22, Col 3"; 14 document.documentElement.className = ""; 15 } 16 ]]></script> 17 </head> 18 <body style="font-family: monospace" onload="doTest()"> 19 <p>There should be no red below, except for antialiasing issues.</p> 20 <div style="position: relative; font-size: 2em;"> 21 <div style="position: relative; z-index: 1; color: red; padding: 1px;"> 22 23 <span style="display: table-cell">Row 1, Col 1</span> 24 <span style="display: table-cell">Row 1, Col 2</span> 25 <span style="display: table-cell" id="t">Row 1, Col 3</span> 26 <span style="display: table-cell">Row 333, Col 1</span> 27 <span style="display: table-cell">Row 333, Col 2</span> 28 <span style="display: table-cell">Row 333, Col 3</span> 29 </div> 30 <div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;"> 31 32 <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none"> 33 <tr> 34 <td>Row 1, Col 1</td> 35 <td>Row 1, Col 2</td> 36 <td>Row 1, Col 3</td> 37 </tr> 38 </table> 39 <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none"> 40 <tr> 41 <td>Row 22, Col 1</td> 42 <td>Row 22, Col 2</td> 43 <td>Row 22, Col 3</td> 44 </tr> 45 </table> 46 <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none"> 47 <tr> 48 <td>Row 333, Col 1</td> 49 <td>Row 333, Col 2</td> 50 <td>Row 333, Col 3</td> 51 </tr> 52 </table> 53 </div> 54 </div> 55 </body> 56 </html>