Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/borders/border-color-applies-to-003.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: Border-color applied to element with display table-footer-group</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-12-08 --> <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-border-color" /> <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-color-properties" /> <link rel="match" href="border-applies-to-001-ref.xht" /> <meta name="assert" content="The 'border-color' properties applies to elements with a display of table-footer-group." /> <style type="text/css"> #test { border-style: solid; border-color: green; border-width: 4px; display: table-footer-group; } #table { border-collapse: collapse; display: table; table-layout: fixed; width: 100px; } .row { display: table-row; } .cell { color: white; display: table-cell; height: 48px; } </style> </head> <body> <p>Test passes if there is a hollow green square.</p> <div id="table"> <div id="test"> <div class="row"> <div class="cell">a</div><div class="cell">b</div> </div> <div class="row"> <div class="cell">c</div><div class="cell">d</div> </div> </div> </div> </body> </html>
/css/CSS2/borders/border-applies-to-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"> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <style type="text/css"><![CDATA[ div.horizontal-edges { background-color: green; height: 4px; width: 104px; } div#vertical-edges { background-color: white; width: 104px; } img {vertical-align: bottom;} img + img {padding-left: 96px;} ]]></style> </head> <body> <p>Test passes if there is a hollow green square.</p> <div class="horizontal-edges"></div> <div id="vertical-edges"><img src="support/1x1-green.png" width="4" height="96" alt="Image download support must be enabled" /><img src="support/1x1-green.png" width="4" height="96" alt="Image download support must be enabled" /></div> <div class="horizontal-edges"></div> </body> </html>