blob: bce0b9f2cddc5583856af5eb762c1b2c62df5835 [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: Min-width applied to elements with 'display' set to 'table-row'</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-11-02 -->
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-min-width" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" />
<link rel="match" href="../reference/ref-if-there-is-no-red.xht" />
<meta name="flags" content="" />
<meta name="assert" content="The 'min-width' property does not apply to elements with 'display' set to 'table-row'." />
<style type="text/css">
#table
{
display: table;
table-layout: fixed;
width: 0in;
}
.row
{
background-color: red;
display: table-row;
min-width: 1in;
}
.cell
{
display: table-cell;
height: 0.5in;
}
</style>
</head>
<body>
<p>Test passes if there is <strong>no red</strong>.</p>
<div id="table">
<div class="row">
<div class="cell"></div><div class="cell"></div>
</div>
<div class="row">
<div class="cell"></div><div class="cell"></div>
</div>
</div>
</body>
</html>