Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/borders/border-color-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: Border-color with one color value</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-05-24 --> <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-color-001-ref.xht" /> <meta name="assert" content="The 'border-color' property with one color value is supported and applied to all sides of the box." /> <style type="text/css"> div { border-color: blue; border-style: solid; border-width: 10px; height: 1in; } </style> </head> <body> <p>Test passes if there is a wide hollow blue rectangle.</p> <div></div> </body> </html>
/css/CSS2/borders/border-color-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.top-and-bottom-stripes { background-color: blue; height: 10px; } img {vertical-align: top;} img + img {float: right;} ]]></style> </head> <body> <p>Test passes if there is a wide hollow blue rectangle.</p> <div class="top-and-bottom-stripes"><img src="support/swatch-blue.png" width="100%" height="10" alt="Image download support must be enabled" /></div> <div><img src="support/swatch-blue.png" width="10" height="96" alt="Image download support must be enabled" /> <img src="support/swatch-blue.png" width="10" height="96" alt="Image download support must be enabled" /></div> <div class="top-and-bottom-stripes"><img src="support/swatch-blue.png" width="100%" height="10" alt="Image download support must be enabled" /></div> </body> </html>