fune/testing/web-platform/tests/css/css-break/monolithic-with-overflow-rl.html
Morten Stenshorne c75b56949c Bug 1740550 [wpt PR 31580] - Ignore overflow inside monolithic content for fragmentation., a=testonly
Automatic update from web-platform-tests
Ignore overflow inside monolithic content for fragmentation.

This is a revert of the fix for bug 1178742, and it will make us
compatible with Firefox. The exact behavior isn't defined in the spec.
See https://github.com/w3c/csswg-drafts/issues/6056

This change will also make it more sensible to fix crbug.com/1242348
and also easier to make the initial column balancing pass more in sync
with actual fragmentation (in a follow-up CL).

Bug: 1178742, 829028
Change-Id: I1bea2fce39b20723d14398ae54cc7f06fa54eb4b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3270687
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Cr-Commit-Position: refs/heads/main@{#940591}

--

wpt-commits: 8010b3d2e76d0f365f087abe4972775b352dad6e
wpt-pr: 31580
2021-11-15 12:01:01 +00:00

15 lines
821 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-break-3/#monolithic">
<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="writing-mode:vertical-rl; inline-size:100px; block-size:100px; background:red;">
<div style="columns:2; column-gap:0; column-fill:auto; block-size:50px;">
<div style="block-size:50px; background:green;"></div>
<div style="contain:size; block-size:0;">
<div style="block-size:25px; background:green;"></div>
<div style="block-size:25px; background:green;"></div>
</div>
<div style="contain:size; block-size:100px; background:green;"></div>
</div>
</div>