chromium/third_party/blink/web_tests/fast/table/no-divide-by-0-with-tiny-heights.html

<!DOCTYPE html>
<style>
table { border: 1px solid; width: 50px }
td { border: 1px solid }
#top  { height: .0005% }
#right { height: 200px }
#bottom  { height: .001% }
</style>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();
</script>

This fixes a crash reported in <a href="https://crbug.com/570139">https://crbug.com/570139 - Floating-point-exception in blink::LayoutTableSection::distributeWholeExtraRowSpanHeightToPercentRows</a>.

<table>
    <tr>
        <td id="top"></td>
        <td id="right" rowspan=2></td>
    </tr>
    <tr>
        <td id="bottom"></td>
    </tr>
</table>