chromium/third_party/blink/web_tests/fast/table/percent-height-content-in-percent-height-cell-with-height-from-row.html

<!DOCTYPE HTML>
<style>
#test {
    background-color: green;
    padding: 0px;
    margin: 0px;
}
.full {
    height: 100%;
    width: 100%;
}
</style>
<p>crbug.com/637811: There should be no box below.</p>
<table style="width: 100px;">
    <tr>
        <td>
            <div style="height: 50px; width: 50px;"></div>
        </td>
        <td class="full">
            <table id="test" class="full" data-expected-height=0 data-expected-width=40></table>
        </td>
    </tr>
</table>
<p>crbug.com/637811: There should be no box below.</p>
<table style="width: 100px;">
    <tr>
        <td>
            <div style="height: 50px; width: 50px;"></div>
        </td>
        <td class="full">
            <div id="test" class="full" data-expected-height=0 data-expected-width=40></div>
        </td>
    </tr>
</table>
<script src="../../resources/check-layout.js"></script>
<script>
    checkLayout("#test");
</script>