Files
servo/tests/wpt/css-tests/css21_dev/html4/border-spacing-applies-to-017.htm

39 lines
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Border-spacing and 'display: inherit' elements</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing">
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#separated-borders">
<meta name="flags" content="">
<meta name="assert" content="Border-spacing does not apply to 'display: inherit' elements which do not inherit the value of 'table' or 'inline-table'.">
<style type="text/css">
#container
{
display: block;
}
.test
{
border-spacing: 20px;
display: inherit;
height: 100px;
width: 100px;
}
.top
{
border: 10px solid blue;
}
.bottom
{
border: 10px solid orange;
}
</style>
</head>
<body>
<p>Test passes if there is a blue and orange square below and there is no vertical gap between the squares.</p>
<div id="container">
<div class="test top"></div>
<div class="test bottom"></div>
</div>
</body>
</html>