Changeset 291163 in webkit
- Timestamp:
- Mar 11, 2022 6:23:34 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
r291161 r291163 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] stroke-linecap should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237763 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
r291161 r291163 153 153 PASS stroke-dasharray: "10px, 20px" onto "none" 154 154 PASS stroke-dasharray: "none" onto "10px, 20px" 155 PASS stroke-linecap (type: discrete) has testAccumulation function 156 PASS stroke-linecap: "square" onto "round" 157 PASS stroke-linecap: "round" onto "square" 155 158 PASS stroke-miterlimit (type: positiveNumber) has testAccumulation function 156 159 PASS stroke-miterlimit: positive number -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt
r291161 r291163 153 153 PASS stroke-dasharray: "10px, 20px" onto "none" 154 154 PASS stroke-dasharray: "none" onto "10px, 20px" 155 PASS stroke-linecap (type: discrete) has testAddition function 156 PASS stroke-linecap: "square" onto "round" 157 PASS stroke-linecap: "round" onto "square" 155 158 PASS stroke-miterlimit (type: positiveNumber) has testAddition function 156 159 PASS stroke-miterlimit: positive number -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt
r291161 r291163 184 184 PASS stroke-dasharray uses discrete animation when animating between "none" and "10px, 20px" with effect easing 185 185 PASS stroke-dasharray uses discrete animation when animating between "none" and "10px, 20px" with keyframe easing 186 PASS stroke-linecap (type: discrete) has testInterpolation function 187 PASS stroke-linecap uses discrete animation when animating between "round" and "square" with linear easing 188 PASS stroke-linecap uses discrete animation when animating between "round" and "square" with effect easing 189 PASS stroke-linecap uses discrete animation when animating between "round" and "square" with keyframe easing 186 190 PASS stroke-miterlimit (type: positiveNumber) has testInterpolation function 187 191 PASS stroke-miterlimit supports animating as a positive number -
trunk/Source/WebCore/ChangeLog
r291162 r291163 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] stroke-linecap should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237763 5 6 Reviewed by Antti Koivisto. 7 8 * animation/CSSPropertyAnimation.cpp: 9 (WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap): 10 1 11 2022-03-11 Rob Buis <rbuis@igalia.com> 2 12 -
trunk/Source/WebCore/animation/CSSPropertyAnimation.cpp
r291161 r291163 3262 3262 new DiscretePropertyWrapper<bool>(CSSPropertyScrollBehavior, &RenderStyle::useSmoothScrolling, &RenderStyle::setUseSmoothScrolling), 3263 3263 new DiscreteFontDescriptionTypedWrapper<TextRenderingMode>(CSSPropertyTextRendering, &FontCascadeDescription::textRenderingMode, &FontCascadeDescription::setTextRenderingMode), 3264 new DiscreteSVGPropertyWrapper<MaskType>(CSSPropertyMaskType, &SVGRenderStyle::maskType, &SVGRenderStyle::setMaskType) 3264 new DiscreteSVGPropertyWrapper<MaskType>(CSSPropertyMaskType, &SVGRenderStyle::maskType, &SVGRenderStyle::setMaskType), 3265 new DiscretePropertyWrapper<LineCap>(CSSPropertyStrokeLinecap, &RenderStyle::capStyle, &RenderStyle::setCapStyle) 3265 3266 }; 3266 3267 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset
for help on using the changeset viewer.