chromium/third_party/blink/web_tests/fast/table/tr-min-content-crash.html

<!doctype html>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
</script>

<style>
.min { height: -webkit-min-content; }
.max { height: -webkit-max-content; }
.fit { height: -webkit-fit-content; }
</style>

<p>Test passes if it does not CRASH in debug.</p>
<p>This test is verifying that setting a table rows height to [min|max|fit]-content does not ASSERT. crbug.com/478265.</p>

<table>
  <tr class="min"></tr>
  <tr class="max"></tr>
  <tr class="fit"></tr>
</table>