<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: Height value of 'auto' on a cell assigns it its content minimum height</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
        <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#height-layout">
        <meta name="flags" content="ahem">
        <meta name="assert" content="A 'height' value of 'auto' on a cell assigns it its content minimum height.">
        <style type="text/css">
            #reference
            {
                background: blue;
                font: 20px/1em Ahem;
                height: 10em;
                width: 10em;
            }
            table
            {
                background: black;
                border-spacing: 0;
            }
            td
            {
                height: auto;
                padding: 0;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the boxes below are the same height.</p>
        <div id="reference">
            <table>
                <tr>
                    <td>XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                        XXXXX<br>
                    </td>
                </tr>
            </table>
        </div>
    </body>
</html>