Changeset 290886 in webkit
- Timestamp:
- Mar 7, 2022 6:22:32 AM (5 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation-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
r290885 r290886 1 2022-03-07 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] text-decoration-skip-ink should support discrete animations 4 https://bugs.webkit.org/show_bug.cgi?id=237512 5 6 Reviewed by Antti Koivisto. 7 8 * web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation-expected.txt: 9 1 10 2022-03-07 Antoine Quint <graouts@webkit.org> 2 11 -
trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation-expected.txt
r290885 r290886 34 34 PASS Animation of word-break in ::marker 35 35 PASS Animation of word-spacing in ::marker 36 FAIL Animation of text-decoration-skip-ink in ::marker assert_equals: expected "none" but got "auto" 36 PASS Animation of text-decoration-skip-ink in ::marker 37 37 FAIL Animation of text-emphasis in ::marker assert_equals: expected "triangle rgb(50, 100, 100)" but got "" 38 38 FAIL Animation of text-emphasis-color in ::marker assert_equals: expected "rgb(50, 100, 100)" but got "rgb(100, 0, 200)" -
trunk/Source/WebCore/ChangeLog
r290885 r290886 1 2022-03-07 Antoine Quint <graouts@webkit.org> 2 3 [web-animations] text-decoration-skip-ink should support discrete animations 4 https://bugs.webkit.org/show_bug.cgi?id=237512 5 6 Reviewed by Antti Koivisto. 7 8 * animation/CSSPropertyAnimation.cpp: 9 (WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap): 10 1 11 2022-03-07 Antoine Quint <graouts@webkit.org> 2 12 -
trunk/Source/WebCore/animation/CSSPropertyAnimation.cpp
r290885 r290886 2787 2787 new LengthPointOrAutoPropertyWrapper(CSSPropertyOffsetAnchor, &RenderStyle::offsetAnchor, &RenderStyle::setOffsetAnchor), 2788 2788 new PropertyWrapperContent, 2789 new OffsetRotatePropertyWrapper(CSSPropertyOffsetRotate, &RenderStyle::offsetRotate, &RenderStyle::setOffsetRotate) 2789 new OffsetRotatePropertyWrapper(CSSPropertyOffsetRotate, &RenderStyle::offsetRotate, &RenderStyle::setOffsetRotate), 2790 new DiscretePropertyWrapper<TextDecorationSkipInk>(CSSPropertyTextDecorationSkipInk, &RenderStyle::textDecorationSkipInk, &RenderStyle::setTextDecorationSkipInk) 2790 2791 }; 2791 2792 const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset
for help on using the changeset viewer.