RESOLVED FIXED224670
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+
Antoine Quint
Comment 1 2021-04-16 06:37:52 PDT
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
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
Note You need to log in before you can comment on or make changes to this bug.