forked from mirrors/gecko-dev
Automatic update from web-platform-tests Remove empty css flags tags from the css directory (non-CSS2) (8/8) (#32151) * remove empty flags tags from the (non CSS2) css directories * remove extra spaces from merge -- wpt-commits: 5e295079d07ef43bdd9fe1ccea9b59067fc5ae46 wpt-pr: 32151
28 lines
518 B
HTML
28 lines
518 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>CSS Reference: Test that height:calc() with no percentages has an effect on inner table elements</title>
|
|
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
|
|
<style type="text/css">
|
|
tbody, tr, td {
|
|
height: 500px;
|
|
min-height: 700px;
|
|
max-height: 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>
|