summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/tall-float-pushed-to-next-fragmentainer-000.html
blob: a5f02184687fd21337c935d0ecc7ae07d6ae3bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-break-3/#parallel-flows">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="A float that doesn't fit in the current fragmentainer will be pushed to next fragmentainer, while subsequent content may still fit in the former fragmentainer, without being affected by the float">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="columns:3; column-fill:auto; height:100px;">
  <div style="width:100px; background:red;">
    <div style="width:200px;">
      <div style="width:100px; height:50px; background:green;"></div>
      <div style="float:left; width:50px; line-height:60px;"><br></div>
      <div style="clear:right; width:100px; height:50px; display:flow-root; background:green;"></div>
    </div>
  </div>
</div>