Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/tables/table-row-group-001.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Test: Table-row-group</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-display" /> <link rel="match" href="table-row-group-001-ref.xht" /> <meta name="assert" content="An element with 'display: table-row-group' is rendered as if it were a table row group." /> <style type="text/css"> .table { border: 2px solid black; display: table; } #tbody { background: blue; display: table-row-group; } .tr { display: table-row; } .td { display: table-cell; height: 2em; width: 2em; } </style> </head> <body> <p>Test passes if there is a square below, and the top half of the square is blue.</p> <div class="table"> <div id="tbody"> <div class="tr"> <div class="td"></div> <div class="td"></div> <div class="td"></div> <div class="td"></div> </div> <div class="tr"> <div class="td"></div> <div class="td"></div> <div class="td"></div> <div class="td"></div> </div> </div> <div class="tr"> <div class="td"></div> <div class="td"></div> <div class="td"></div> <div class="td"></div> </div> <div class="tr"> <div class="td"></div> <div class="td"></div> <div class="td"></div> <div class="td"></div> </div> </div> </body> </html>
/css/CSS2/tables/table-row-group-001-ref.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <body> <p>Test passes if there is a square below, and the top half of the square is blue.</p> <div style="width: 8em; height: 8em; border: 2px solid black"> <div style="height: 4em; background: blue"></div> </div> </body> </html>