mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
31 lines
No EOL
707 B
HTML
31 lines
No EOL
707 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="https://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> |