WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
78759
REGRESSION (
r107836
): fast/box-shadow/spread.html and fast/writing-mode/box-shadow-*.html tests failing
https://bugs.webkit.org/show_bug.cgi?id=78759
Summary
REGRESSION (r107836): fast/box-shadow/spread.html and fast/writing-mode/box-s...
mitz
Reported
2012-02-15 16:22:25 PST
fast/box-shadow/spread.html and fast/writing-mode/box-shadow-*.html tests failing after
r107836
, the fix for
bug 78728
.
Attachments
Refine checks in boxShadowShouldBeAppliedToBackground()
(9.49 KB, patch)
2012-02-15 16:48 PST
,
mitz
simon.fraser
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
mitz
Comment 1
2012-02-15 16:48:06 PST
Created
attachment 127276
[details]
Refine checks in boxShadowShouldBeAppliedToBackground()
Simon Fraser (smfr)
Comment 2
2012-02-15 18:00:44 PST
Comment on
attachment 127276
[details]
Refine checks in boxShadowShouldBeAppliedToBackground() View in context:
https://bugs.webkit.org/attachment.cgi?id=127276&action=review
> Source/WebCore/rendering/InlineFlowBox.cpp:1086 > + return (!hasFillImage && !renderer()->style()->hasBorderRadius()) || (!prevLineBox() && !nextLineBox()) || !parent();
It's hard to understand all the conditions in this line. Perhaps an explanatory comment would help.
> Source/WebCore/rendering/RenderBoxModelObject.cpp:2623 > + if (lastBackgroundLayer->image() && style()->hasBorderRadius()) > + return false; > + > + if (inlineFlowBox && !inlineFlowBox->boxShadowCanBeAppliedToBackground(*lastBackgroundLayer)) > + return false;
Why do we only check the last fill layer?
mitz
Comment 3
2012-02-15 19:25:28 PST
(In reply to
comment #2
)
> (From update of
attachment 127276
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=127276&action=review
> > > Source/WebCore/rendering/InlineFlowBox.cpp:1086 > > + return (!hasFillImage && !renderer()->style()->hasBorderRadius()) || (!prevLineBox() && !nextLineBox()) || !parent(); > > It's hard to understand all the conditions in this line. Perhaps an explanatory comment would help. > > > Source/WebCore/rendering/RenderBoxModelObject.cpp:2623 > > + if (lastBackgroundLayer->image() && style()->hasBorderRadius()) > > + return false; > > + > > + if (inlineFlowBox && !inlineFlowBox->boxShadowCanBeAppliedToBackground(*lastBackgroundLayer)) > > + return false; > > Why do we only check the last fill layer?
That’s the layer that will be casting the shadow, if any.
mitz
Comment 4
2012-02-15 19:32:39 PST
Committed <
http://webkit.org/r107874
>.
David Harrison
Comment 5
2012-02-23 13:03:31 PST
rdar://10915520
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