Changeset 291157 in webkit
- Timestamp:
- Mar 11, 2022 5:48:53 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
r291154 r291157 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] text-rendering should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237777 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 Antti Koivisto <antti@apple.com> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt
r291148 r291157 181 181 PASS text-overflow: "ellipsis" onto "clip" 182 182 PASS text-overflow: "clip" onto "ellipsis" 183 PASS text-rendering (type: discrete) has testAccumulation function 184 PASS text-rendering: "optimizeLegibility" onto "optimizeSpeed" 185 PASS text-rendering: "optimizeSpeed" onto "optimizeLegibility" 183 186 PASS text-shadow (type: textShadowList) has testAccumulation function 184 187 PASS text-shadow: shadow -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt
r291148 r291157 181 181 PASS text-overflow: "ellipsis" onto "clip" 182 182 PASS text-overflow: "clip" onto "ellipsis" 183 PASS text-rendering (type: discrete) has testAddition function 184 PASS text-rendering: "optimizeLegibility" onto "optimizeSpeed" 185 PASS text-rendering: "optimizeSpeed" onto "optimizeLegibility" 183 186 PASS text-shadow (type: textShadowList) has testAddition function 184 187 PASS text-shadow: shadow -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt
r291148 r291157 214 214 PASS text-overflow uses discrete animation when animating between "clip" and "ellipsis" with effect easing 215 215 PASS text-overflow uses discrete animation when animating between "clip" and "ellipsis" with keyframe easing 216 PASS text-rendering (type: discrete) has testInterpolation function 217 PASS text-rendering uses discrete animation when animating between "optimizeSpeed" and "optimizeLegibility" with linear easing 218 PASS text-rendering uses discrete animation when animating between "optimizeSpeed" and "optimizeLegibility" with effect easing 219 PASS text-rendering uses discrete animation when animating between "optimizeSpeed" and "optimizeLegibility" with keyframe easing 216 220 PASS text-shadow (type: textShadowList) has testInterpolation function 217 221 PASS text-shadow: from none to other -
trunk/Source/WebCore/ChangeLog
r291156 r291157 1 2022-03-11 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] text-rendering should support discrete animation 4 https://bugs.webkit.org/show_bug.cgi?id=237777 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
r291156 r291157 3248 3248 new GridTemplateAreasWrapper, 3249 3249 new QuotesWrapper, 3250 new DiscretePropertyWrapper<bool>(CSSPropertyScrollBehavior, &RenderStyle::useSmoothScrolling, &RenderStyle::setUseSmoothScrolling) 3250 new DiscretePropertyWrapper<bool>(CSSPropertyScrollBehavior, &RenderStyle::useSmoothScrolling, &RenderStyle::setUseSmoothScrolling), 3251 new DiscreteFontDescriptionTypedWrapper<TextRenderingMode>(CSSPropertyTextRendering, &FontCascadeDescription::textRenderingMode, &FontCascadeDescription::setTextRenderingMode), 3251 3252 }; 3252 3253 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset
for help on using the changeset viewer.