chromium/third_party/blink/web_tests/external/wpt/css/css-tables/table-cell-overflow-explicit-height-ref.html

<!DOCTYPE html>
<style>
td {
  border: 2px solid cyan;
}
.tall {
  height: 300px;
  background: blue;
  border: 2px solid black;
}
</style>
<table border>
  <td>
    <div class="tall"></div>
    Can you see this text?
  </td>
</table>