servo/tests/wpt/css-tests/css-values-3_dev/html/calc-height-table-1.htm

31 lines
No EOL
706 B
HTML

<!DOCTYPE html>
<html><head>
<title>CSS Test: Test that height:calc() with no percentages has an effect on inner table elements</title>
<link href="http://dbaron.org/" rel="author" title="L. David Baron">
<link href="http://www.w3.org/TR/css3-values/#calc-notation" rel="help">
<link href="reference/calc-height-table-1-ref.htm" rel="match">
<meta content="" name="flags">
<style type="text/css">
tbody, tr, td {
height: calc(500px);
min-height: calc(700px);
max-height: calc(2px);
}
</style>
</head>
<body>
<table border="">
<tbody>
<tr>
<td>cell</td>
<td>cell</td>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
</tr>
</tbody>
</table>
</body></html>