Changeset 291164 in webkit
- Timestamp:
- Mar 11, 2022 6:27:14 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
r291163 r291164 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] stroke-linejoin should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237764 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
r291163 r291164 156 156 PASS stroke-linecap: "square" onto "round" 157 157 PASS stroke-linecap: "round" onto "square" 158 PASS stroke-linejoin (type: discrete) has testAccumulation function 159 PASS stroke-linejoin: "miter" onto "round" 160 PASS stroke-linejoin: "round" onto "miter" 158 161 PASS stroke-miterlimit (type: positiveNumber) has testAccumulation function 159 162 PASS stroke-miterlimit: positive number -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt
r291163 r291164 156 156 PASS stroke-linecap: "square" onto "round" 157 157 PASS stroke-linecap: "round" onto "square" 158 PASS stroke-linejoin (type: discrete) has testAddition function 159 PASS stroke-linejoin: "miter" onto "round" 160 PASS stroke-linejoin: "round" onto "miter" 158 161 PASS stroke-miterlimit (type: positiveNumber) has testAddition function 159 162 PASS stroke-miterlimit: positive number -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt
r291163 r291164 188 188 PASS stroke-linecap uses discrete animation when animating between "round" and "square" with effect easing 189 189 PASS stroke-linecap uses discrete animation when animating between "round" and "square" with keyframe easing 190 PASS stroke-linejoin (type: discrete) has testInterpolation function 191 PASS stroke-linejoin uses discrete animation when animating between "round" and "miter" with linear easing 192 PASS stroke-linejoin uses discrete animation when animating between "round" and "miter" with effect easing 193 PASS stroke-linejoin uses discrete animation when animating between "round" and "miter" with keyframe easing 190 194 PASS stroke-miterlimit (type: positiveNumber) has testInterpolation function 191 195 PASS stroke-miterlimit supports animating as a positive number -
trunk/Source/WebCore/ChangeLog
r291163 r291164 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] stroke-linejoin should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237764 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
r291163 r291164 3263 3263 new DiscreteFontDescriptionTypedWrapper<TextRenderingMode>(CSSPropertyTextRendering, &FontCascadeDescription::textRenderingMode, &FontCascadeDescription::setTextRenderingMode), 3264 3264 new DiscreteSVGPropertyWrapper<MaskType>(CSSPropertyMaskType, &SVGRenderStyle::maskType, &SVGRenderStyle::setMaskType), 3265 new DiscretePropertyWrapper<LineCap>(CSSPropertyStrokeLinecap, &RenderStyle::capStyle, &RenderStyle::setCapStyle) 3265 new DiscretePropertyWrapper<LineCap>(CSSPropertyStrokeLinecap, &RenderStyle::capStyle, &RenderStyle::setCapStyle), 3266 new DiscretePropertyWrapper<LineJoin>(CSSPropertyStrokeLinejoin, &RenderStyle::joinStyle, &RenderStyle::setJoinStyle) 3266 3267 }; 3267 3268 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset
for help on using the changeset viewer.