chromium/third_party/blink/web_tests/tables/mozilla_expected_failures/bugs/bug19526.html

<html>
<head>
<title>Testing the use of table height</title>
</head>

<body>

<P> 100 percent height table inside 100 percent height table:</P>
<!-- This works -->
<table border=1 width="100%" height="100%" bgcolor=grey>
<td width="50%">
        <!-- This does not work -->
        <table width="100%" height="100%" border=1 bgcolor=yellow>
        <td width="50%">&nbsp;Inner Table (yellow)</td><td width="50%">&nbsp;</td></tr>
        </table>
</td>
<td width="50%">
        &nbsp;Outer Table (grey)
</td>
</table>


<P> 50 percent height table inside 100 percent height table:</P>
<!-- This works -->
<table border=1 width="100%" height="100%" bgcolor=grey>
<td width="50%">
        <!-- This does not work -->
        <table width="100%" height="50%" border=1 bgcolor=yellow>
        <td width="50%">&nbsp;Inner Table (yellow)</td><td width="50%">&nbsp;</td></tr>
        </table>
</td>
<td width="50%">
        &nbsp;Outer Table (grey)
</td>
</table>

</body>
</html>