WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
224670
Blend using calc() when necessary
https://bugs.webkit.org/show_bug.cgi?id=224670
Summary
Blend using calc() when necessary
Antoine Quint
Reported
2021-04-16 06:27:53 PDT
Blend using calc() with 0 values
Attachments
Patch
(137.31 KB, patch)
2021-04-16 06:37 PDT
,
Antoine Quint
koivisto
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Antoine Quint
Comment 1
2021-04-16 06:37:52 PDT
Created
attachment 426218
[details]
Patch
Antti Koivisto
Comment 2
2021-04-16 07:00:41 PDT
Comment on
attachment 426218
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=426218&action=review
> Source/WebCore/animation/CSSPropertyAnimation.cpp:851 > + if (!canInterpolate(from, to)) > + (destination->*m_setter)(progress ? LengthBox(value(to)) : LengthBox(value(from))); > + else {
You could early return instead of having an else branch.
> Source/WebCore/platform/LengthBox.h:61 > + LengthBox(const LengthBox& box) > + : RectEdges { Length(box.top()), Length(box.right()), Length(box.bottom()), Length(box.left()) } > + { > + } > +
I guess you also just give both RectEdges and LengthBox defaulted copy constructors.
Antoine Quint
Comment 3
2021-04-16 08:46:33 PDT
Committed
r276138
(
236632@main
): <
https://commits.webkit.org/236632@main
>
Antoine Quint
Comment 4
2021-04-16 09:48:37 PDT
(In reply to Antti Koivisto from
comment #2
)
> Comment on
attachment 426218
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=426218&action=review
> > > Source/WebCore/animation/CSSPropertyAnimation.cpp:851 > > + if (!canInterpolate(from, to)) > > + (destination->*m_setter)(progress ? LengthBox(value(to)) : LengthBox(value(from))); > > + else { > > You could early return instead of having an else branch.
Good point, made the change in the landed patch.
> > Source/WebCore/platform/LengthBox.h:61 > > + LengthBox(const LengthBox& box) > > + : RectEdges { Length(box.top()), Length(box.right()), Length(box.bottom()), Length(box.left()) } > > + { > > + } > > + > > I guess you also just give both RectEdges and LengthBox defaulted copy > constructors.
Yes, that's the approach I took in the landed patch.
Radar WebKit Bug Importer
Comment 5
2021-04-24 15:09:47 PDT
<
rdar://problem/77110128
>
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