Multicol painting wide content should not clip to column |
|||
Issue description
Consider:
<!doctype HTML>
<style>
#container {
width: 200px;
height: 150px;
columns: 2;
column-fill: balance;
background: yellow;
}
#contained {
width: 150px;
height: 100px;
background: blue;
border: 5px solid red;
}
</style>
<div id="container">
<div id="contained"></div>
lorem ipsum dolor lorem ipsum dolor
lorem ipsum dolor lorem ipsum dolor
lorem ipsum dolor lorem ipsum dolor
</div>
According to https://www.w3.org/TR/css-multicol-1/#overflow:
"""
Except for cases where this would cause a column break, content that extends outside column boxes visibly overflows and is not clipped to the column box.
"""
What we get instead is a clipped div, see attached.
,
Aug 31
,
Oct 8
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/6714262b74a4f0151115a8d1288290a6ee3d7c12 commit 6714262b74a4f0151115a8d1288290a6ee3d7c12 Author: Morten Stenshorne <mstensho@chromium.org> Date: Mon Oct 08 11:28:51 2018 multicol-span-none-001.xht passes. Corrected ref imported in https://chromium-review.googlesource.com/c/chromium/src/+/1259943 Fixed by aethanyc@gmail.com in https://bugzilla.mozilla.org/show_bug.cgi?id=1495875 TBR=vmpstr@chromium.org Bug: 874124 Change-Id: I58d7b2117217197b6240655a1d4b32b34b120895 Reviewed-on: https://chromium-review.googlesource.com/c/1268137 Reviewed-by: Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#597529} [modify] https://crrev.com/6714262b74a4f0151115a8d1288290a6ee3d7c12/third_party/WebKit/LayoutTests/TestExpectations
,
Dec 12
Issue 776051 has been merged into this issue. |
|||
►
Sign in to add a comment |
|||
Comment 1 by bugdroid1@chromium.org
, Aug 27