chromium/third_party/blink/web_tests/fast/table/row-height-recalc.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<body>
<p>
    Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9012">http://bugzilla.opendarwin.org/show_bug.cgi?id=9012</a>
    Row height not updated when cell heights change</i>.
</p>
<hr>
<table cellspacing="0" cellpadding="0">
    <tr style="background: red;">
        <td style="width: 50px;"></td>
        <td style="width: 50px; height: 50px; background: green;" id="t"></td>
    </tr>
    <tr style="background: green;">
        <td style="height: 100px;" colspan="2"></td>
    </tr>
</table>
<script type="text/javascript">
    document.getElementById("t").style.height='0';
</script>
</body>
</html>