summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/nested-float-in-multicol-crash.html
blob: 6878d384e54b0f3262cbbfb0552b9d19e707140d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1336847">
<style>
  .float {
    float: left;
    clear: both;
  }
  div {
    padding-bottom: 10px;
    padding-top: 10000000000px;
  }
</style>
<div style="column-count:15;">
  <div>
    text
    <div></div>
    <div class="float"></div>
  </div>
  <div class="float"></div>
</div>