Changeset 291158 in webkit
- Timestamp:
- Mar 11, 2022 6:01:39 AM (4 months ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/animation/CSSPropertyAnimation.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r291157 r291158 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] mask-type should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237768 5 6 Reviewed by Antti Koivisto. 7 8 * web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt: 9 * web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt: 10 * web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt: 11 1 12 2022-03-11 Antoine Quint <graouts@webkit.org> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt
r291157 r291158 44 44 PASS mask-origin: "border-box" onto "content-box" 45 45 PASS mask-origin: "content-box" onto "border-box" 46 PASS mask-type (type: discrete) has testAccumulation function 47 PASS mask-type: "luminance" onto "alpha" 48 PASS mask-type: "alpha" onto "luminance" 46 49 PASS mix-blend-mode (type: discrete) has testAccumulation function 47 50 PASS mix-blend-mode: "screen" onto "multiply" -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt
r291157 r291158 44 44 PASS mask-origin: "border-box" onto "content-box" 45 45 PASS mask-origin: "content-box" onto "border-box" 46 PASS mask-type (type: discrete) has testAddition function 47 PASS mask-type: "luminance" onto "alpha" 48 PASS mask-type: "alpha" onto "luminance" 46 49 PASS mix-blend-mode (type: discrete) has testAddition function 47 50 PASS mix-blend-mode: "screen" onto "multiply" -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt
r291157 r291158 55 55 PASS mask-origin uses discrete animation when animating between "content-box" and "border-box" with effect easing 56 56 PASS mask-origin uses discrete animation when animating between "content-box" and "border-box" with keyframe easing 57 PASS mask-type (type: discrete) has testInterpolation function 58 PASS mask-type uses discrete animation when animating between "alpha" and "luminance" with linear easing 59 PASS mask-type uses discrete animation when animating between "alpha" and "luminance" with effect easing 60 PASS mask-type uses discrete animation when animating between "alpha" and "luminance" with keyframe easing 57 61 PASS mix-blend-mode (type: discrete) has testInterpolation function 58 62 PASS mix-blend-mode uses discrete animation when animating between "multiply" and "screen" with linear easing -
trunk/Source/WebCore/ChangeLog
r291157 r291158 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] mask-type should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237768 5 6 Reviewed by Antti Koivisto. 7 8 * animation/CSSPropertyAnimation.cpp: 9 (WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap): 10 1 11 2022-03-11 Antoine Quint <graouts@webkit.org> 2 12 -
trunk/Source/WebCore/animation/CSSPropertyAnimation.cpp
r291157 r291158 3250 3250 new DiscretePropertyWrapper<bool>(CSSPropertyScrollBehavior, &RenderStyle::useSmoothScrolling, &RenderStyle::setUseSmoothScrolling), 3251 3251 new DiscreteFontDescriptionTypedWrapper<TextRenderingMode>(CSSPropertyTextRendering, &FontCascadeDescription::textRenderingMode, &FontCascadeDescription::setTextRenderingMode), 3252 new DiscreteSVGPropertyWrapper<MaskType>(CSSPropertyMaskType, &SVGRenderStyle::maskType, &SVGRenderStyle::setMaskType) 3252 3253 }; 3253 3254 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset
for help on using the changeset viewer.