Status: PASS | Duration: 10ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/linebox/line-height-applies-to-005.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: Line-height applied to elements with 'display' set to 'table-column-group'</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height" /> <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" /> <link rel="match" href="line-height-applies-to-005-ref.xht" /> <meta name="assert" content="The 'line-height' property applies to elements with 'display' set to 'table-column-group'." /> <style type="text/css"> #div1 { position: relative; } #div2 { background: orange; height: 1in; left: 1in; position: absolute; top: 0; width: 1in; } #test { display: table-column-group; line-height: 2in; } #table { display: table; table-layout: fixed; } #row { display: table-row; } #cell { background: blue; display: table-cell; height: 1in; width: 1in; } </style> </head> <body> <p>Test passes if the blue and orange squares have the <strong>same height</strong>.</p> <div id="div1"> <div id="table"> <div id="test"></div> <div id="row"> <div id="cell"></div> </div> </div> <div id="div2"></div> </div> </body> </html>
/css/CSS2/linebox/line-height-applies-to-005-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"> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> </head> <body> <p>Test passes if the blue and orange squares have the <strong>same height</strong>.</p> <div><img src="support/swatch-blue.png" width="96" height="96" alt="Image download support must be enabled" /><img src="support/swatch-orange.png" width="96" height="96" alt="Image download support must be enabled" /></div> </body> </html>