summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/iframe-in-repeated-table-header-crash.html
blob: 8956bc777a03c801e0b26525612fabcc93d2620f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<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>