chromium/third_party/blink/web_tests/external/wpt/css/css-break/iframe-in-repeated-table-header-crash.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:[email protected]">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1260855">
<div style="columns:2; column-fill:auto; height:200px;">
  <table>
    <thead style="break-inside:avoid;">
      <tr>
        <td>
          <iframe style="height:10px;"></iframe>
        </td>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
          <div style="height:100px;"></div>
        </td>
      </tr>
      <tr>
        <td>
          <div style="height:100px;"></div>
        </td>
      </tr>
    </tbody>
  </table>
</div>