forked from mirrors/gecko-dev
Automatic update from web-platform-tests Handle inner floated multicol at outer boundary. This used to crash, because we ignored layout abortions on floats, and would attempt to use the fragment (which is nullptr). Bug: 829028 Change-Id: I04c44030d33182fd3020e8091228668d7f8a7190 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2592805 Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#837713} -- wpt-commits: ed5cae4dc20c80677fdb05a3bd46c17a6b382104 wpt-pr: 26934
11 lines
632 B
HTML
11 lines
632 B
HTML
<!DOCTYPE html>
|
|
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
|
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#the-multi-column-model">
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
<div style="margin-left:-100px; columns:2; height:200px; width:200px; column-gap:0; column-fill:auto;">
|
|
<div style="height:200px;"></div>
|
|
<div style="float:left; columns:2; width:100%; column-gap:0; background:red;">
|
|
<div style="height:200px; background:green;"></div>
|
|
</div>
|
|
</div>
|