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-width-applies-to-008.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-width applied to element with display inline</title>
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-06-25 -->
<link rel="match" href="border-width-applies-to-008-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-width' property applies to elements with a display of inline." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{
border-style: solid;
border-width: 90px;
display: inline;
font: 90px/1 Ahem;
}
p
{
margin-bottom: 135px;
}
</style>
</head>
<body>
<p>Test passes if there is a large square with four black sides that have the same thickness. (Note: Such large square must be surrounding a smaller filled white square.)</p>
<div> </div>
</body>
</html>