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
204010
[Web Animations] Use a keyframe effect stack to resolve animations on an element
https://bugs.webkit.org/show_bug.cgi?id=204010
Summary
[Web Animations] Use a keyframe effect stack to resolve animations on an element
Antoine Quint
Reported
2019-11-08 10:01:53 PST
[Web Animations] Use a keyframe effect stack to resolve animations on an element
Attachments
Patch
(34.67 KB, patch)
2019-11-08 10:19 PST
,
Antoine Quint
dino
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Antoine Quint
Comment 1
2019-11-08 10:19:06 PST
Created
attachment 383140
[details]
Patch
Dean Jackson
Comment 2
2019-11-08 10:24:33 PST
Comment on
attachment 383140
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=383140&action=review
> Source/WebCore/animation/KeyframeEffect.cpp:1009 > + bool animationChanged = animation != this->animation(); > + AnimationEffect::setAnimation(animation); > + if (m_target && animationChanged) {
Would it read better as this? { AnimationEffect::setAnimation(animation); if (m_target && animation != this->animation()) {... I'm not sure.
Antoine Quint
Comment 3
2019-11-08 12:32:49 PST
(In reply to Dean Jackson from
comment #2
)
> Comment on
attachment 383140
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=383140&action=review
> > > Source/WebCore/animation/KeyframeEffect.cpp:1009 > > + bool animationChanged = animation != this->animation(); > > + AnimationEffect::setAnimation(animation); > > + if (m_target && animationChanged) { > > Would it read better as this? > { > AnimationEffect::setAnimation(animation); > if (m_target && animation != this->animation()) {... > > I'm not sure.
Once AnimationEffect::setAnimation(animation) is called, `animation` and `this->animation()` are guaranteed to return the same thing. That's why it's required to determine whether the value changed before calling the superclass's implementation.
Antoine Quint
Comment 4
2019-11-08 12:41:07 PST
Committed
r252253
: <
https://trac.webkit.org/changeset/252253
>
Radar WebKit Bug Importer
Comment 5
2019-11-08 12:42:15 PST
<
rdar://problem/57031112
>
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