blob: 3af89edc6b82b7f7993478f15adf0a669639c263 [file] [log] [blame]
<!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: Height applied to elements with 'display' set to 'table-footer-group'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-height" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property" />
<meta name="flags" content="may" />
<meta name="assert" content="The 'height' property applies to elements with 'display' set to 'table-footer-group'." />
<style type="text/css">
#test
{
display: table-footer-group;
background: black;
height: 1in;
}
#table
{
display: table;
table-layout: fixed;
width: 1in;
}
#row
{
display: table-row;
}
#cell
{
display: table-cell;
}
</style>
</head>
<body>
<p>Test passes if there is a box below.</p>
<!-- If 'height' is supported on 'table-footer-group' then a square will be visible. -->
<div id="table">
<div id="test">
<div id="row">
<div id="cell">&nbsp;</div>
</div>
</div>
</div>
</body>
</html>