Changeset 291170 in webkit
- Timestamp:
- Mar 11, 2022 9:08:15 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
r291166 r291170 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] vector-effect should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237766 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
r291166 r291170 249 249 PASS scale with one unspecified value 250 250 PASS scale 251 PASS vector-effect (type: discrete) has testAccumulation function 252 PASS vector-effect: "non-scaling-stroke" onto "none" 253 PASS vector-effect: "none" onto "non-scaling-stroke" 251 254 PASS visibility (type: visibility) has testAccumulation function 252 255 PASS visibility: onto "visible" -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt
r291166 r291170 245 245 PASS scale with one unspecified value 246 246 PASS scale 247 PASS vector-effect (type: discrete) has testAddition function 248 PASS vector-effect: "non-scaling-stroke" onto "none" 249 PASS vector-effect: "none" onto "non-scaling-stroke" 247 250 PASS visibility (type: visibility) has testAddition function 248 251 PASS visibility: onto "visible" -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt
r291166 r291170 303 303 PASS scale with one unspecified value 304 304 PASS scale 305 PASS vector-effect (type: discrete) has testInterpolation function 306 PASS vector-effect uses discrete animation when animating between "none" and "non-scaling-stroke" with linear easing 307 PASS vector-effect uses discrete animation when animating between "none" and "non-scaling-stroke" with effect easing 308 PASS vector-effect uses discrete animation when animating between "none" and "non-scaling-stroke" with keyframe easing 305 309 PASS visibility (type: visibility) has testInterpolation function 306 310 PASS visibility uses visibility animation when animating from "visible" to "hidden" -
trunk/Source/WebCore/ChangeLog
r291169 r291170 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] vector-effect should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237766 5 6 Reviewed by Antti Koivisto. 7 8 * animation/CSSPropertyAnimation.cpp: 9 (WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap): 10 1 11 2022-03-11 Alan Bujtas <zalan@apple.com> 2 12 -
trunk/Source/WebCore/animation/CSSPropertyAnimation.cpp
r291166 r291170 3265 3265 new DiscretePropertyWrapper<LineCap>(CSSPropertyStrokeLinecap, &RenderStyle::capStyle, &RenderStyle::setCapStyle), 3266 3266 new DiscretePropertyWrapper<LineJoin>(CSSPropertyStrokeLinejoin, &RenderStyle::joinStyle, &RenderStyle::setJoinStyle), 3267 new DiscreteSVGPropertyWrapper<TextAnchor>(CSSPropertyTextAnchor, &SVGRenderStyle::textAnchor, &SVGRenderStyle::setTextAnchor) 3267 new DiscreteSVGPropertyWrapper<TextAnchor>(CSSPropertyTextAnchor, &SVGRenderStyle::textAnchor, &SVGRenderStyle::setTextAnchor), 3268 new DiscreteSVGPropertyWrapper<VectorEffect>(CSSPropertyVectorEffect, &SVGRenderStyle::vectorEffect, &SVGRenderStyle::setVectorEffect) 3268 3269 }; 3269 3270 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset
for help on using the changeset viewer.