Title: [293107] branches/safari-613-branch/Source/WebCore/animation/KeyframeEffect.cpp
- Revision
- 293107
- Author
- [email protected]
- Date
- 2022-04-20 10:53:03 -0700 (Wed, 20 Apr 2022)
Log Message
Unreviewed build fix. rdar://problem/88672183
./animation/KeyframeEffect.cpp:644:9: error: use of undeclared identifier 'computedKeyframeList'; did you mean 'computedKeyframes'?
Modified Paths
Diff
Modified: branches/safari-613-branch/Source/WebCore/animation/KeyframeEffect.cpp (293106 => 293107)
--- branches/safari-613-branch/Source/WebCore/animation/KeyframeEffect.cpp 2022-04-20 17:43:39 UTC (rev 293106)
+++ branches/safari-613-branch/Source/WebCore/animation/KeyframeEffect.cpp 2022-04-20 17:53:03 UTC (rev 293107)
@@ -641,7 +641,7 @@
KeyframeList computedKeyframes(m_blendingKeyframes.animationName());
computedKeyframes.copyKeyframes(m_blendingKeyframes);
- computedKeyframeList.fillImplicitKeyframes(*this, elementStyle);
+ computedKeyframes.fillImplicitKeyframes(*this, elementStyle);
auto keyframeRules = [&]() -> const Vector<Ref<StyleRuleKeyframe>> {
if (!is<CSSAnimation>(animation()))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes