WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
192078
[LFC][Quirk] Use non-collapsed vertical margin values when the container is stretched to the size of the ICB.
https://bugs.webkit.org/show_bug.cgi?id=192078
Summary
[LFC][Quirk] Use non-collapsed vertical margin values when the container is s...
zalan
Reported
2018-11-28 08:58:38 PST
ssia
Attachments
Patch
(5.71 KB, patch)
2018-11-28 09:01 PST
,
zalan
koivisto
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
zalan
Comment 1
2018-11-28 09:01:55 PST
Created
attachment 355877
[details]
Patch
Antti Koivisto
Comment 2
2018-11-28 09:08:13 PST
Comment on
attachment 355877
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=355877&action=review
> Source/WebCore/layout/blockformatting/BlockFormattingContextGeometry.cpp:67 > static HeightAndMargin stretchHeightToInitialContainingBlock(HeightAndMargin heightAndMargin, LayoutUnit initialContainingBlockHeight) > { > - auto verticalMargins = heightAndMargin.margin.top + heightAndMargin.margin.bottom; > + // This quirk happens when the body height is 0 which means its vertical margins collapse through (top and bottom margins are adjoining). > + // However now that we stretch the body they don't collapse through anymore, so we need to use the non-collapsed values instead. > + ASSERT(initialContainingBlockHeight); > + auto verticalMargins = heightAndMargin.height ? heightAndMargin.usedMarginValues() : heightAndMargin.margin; > + auto totalVerticalMargins = verticalMargins.top + verticalMargins.bottom;
Could we factor all quirk mode code to a class or namespace or something that says "quirk"?
zalan
Comment 3
2018-11-28 09:17:35 PST
Committed
r238613
: <
https://trac.webkit.org/changeset/238613
>
Radar WebKit Bug Importer
Comment 4
2018-11-28 09:18:45 PST
<
rdar://problem/46311589
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug