Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/borders/border-left-style-002.xht - WPT Dashboard Interop Dashboard
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Border-left-style set to 'hidden'</title>
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-05-30 -->
<link rel="match" href="../reference/ref-nothing-below.xht" />
<meta name="assert" content="The 'border-left-style' property set to 'hidden' computes to 'none' and does not render any border for non-table elements." />
<style type="text/css">
div
{
border-left-style: solid;
border-left-style: hidden;
border-left-width: 3px;
height: 1in;
}
</style>
</head>
<body>
<p>Test passes if there is nothing below.</p>
<div></div>
</body>
</html>