RESOLVED CONFIGURATION CHANGED 205060
[Web Animations] Move getKeyframes() "composite" properties behind the composite operations runtime flag
https://bugs.webkit.org/show_bug.cgi?id=205060
Summary [Web Animations] Move getKeyframes() "composite" properties behind the compos...
Antoine Quint
Reported 2019-12-10 06:14:52 PST
We added a runtime flag for composite operations in bug 204718, we must ensure that the "composite" property on getKeyframes() output is also conditioned behind that flag.
Attachments
Antoine Quint
Comment 1 2023-05-10 13:11:51 PDT
This is done, per KeyframeEffect::getKeyframes(): if (document.settings().webAnimationsCompositeOperationsEnabled()) { if (auto compositeOperation = keyframe.compositeOperation()) computedKeyframe.composite = toCompositeOperationOrAuto(*compositeOperation); }
Note You need to log in before you can comment on or make changes to this bug.