Changeset 290886 in webkit


Ignore:
Timestamp:
Mar 7, 2022 6:22:32 AM (5 months ago)
Author:
graouts@webkit.org
Message:

[web-animations] text-decoration-skip-ink should support discrete animations
https://bugs.webkit.org/show_bug.cgi?id=237512

Reviewed by Antti Koivisto.

LayoutTests/imported/w3c:

  • web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation-expected.txt:

Source/WebCore:

  • animation/CSSPropertyAnimation.cpp:

(WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap):

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/imported/w3c/ChangeLog

    r290885 r290886  
     12022-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
    1102022-03-07  Antoine Quint  <graouts@webkit.org>
    211
  • trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation-expected.txt

    r290885 r290886  
    3434PASS Animation of word-break in ::marker
    3535PASS Animation of word-spacing in ::marker
    36 FAIL Animation of text-decoration-skip-ink in ::marker assert_equals: expected "none" but got "auto"
     36PASS Animation of text-decoration-skip-ink in ::marker
    3737FAIL Animation of text-emphasis in ::marker assert_equals: expected "triangle rgb(50, 100, 100)" but got ""
    3838FAIL 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  
     12022-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
    1112022-03-07  Antoine Quint  <graouts@webkit.org>
    212
  • trunk/Source/WebCore/animation/CSSPropertyAnimation.cpp

    r290885 r290886  
    27872787        new LengthPointOrAutoPropertyWrapper(CSSPropertyOffsetAnchor, &RenderStyle::offsetAnchor, &RenderStyle::setOffsetAnchor),
    27882788        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)
    27902791    };
    27912792    const unsigned animatableLonghandPropertiesCount = WTF_ARRAY_LENGTH(animatableLonghandPropertyWrappers);
Note: See TracChangeset for help on using the changeset viewer.