Changeset 276553 in webkit
- Timestamp:
- Apr 24, 2021, 12:35:08 PM (5 years 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-001-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-001-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-001-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
r276552 r276553 1 2021-04-24 Antoine Quint <graouts@webkit.org> 2 3 Support interpolation of the background-repeat shorthand 4 https://bugs.webkit.org/show_bug.cgi?id=225016 5 6 Reviewed by Dean Jackson. 7 8 Mark 10 WPT progressions. 9 10 * web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-001-expected.txt: 11 * web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-001-expected.txt: 12 * web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-001-expected.txt: 13 1 14 2021-04-24 Antoine Quint <graouts@webkit.org> 2 15 -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-001-expected.txt
r276552 r276553 29 29 PASS background-origin: "content-box" onto "padding-box" 30 30 PASS background-origin: "padding-box" onto "content-box" 31 PASS background-repeat (type: discrete) has testAccumulation function 32 PASS background-repeat: "round" onto "space" 33 PASS background-repeat: "space" onto "round" 31 34 PASS border-bottom-color (type: color) has testAccumulation function 32 35 FAIL border-bottom-color supports animating as color of rgb() with overflowed from and to values assert_equals: The value should be rgb(255, 128, 128) at 0ms expected "rgb(255, 128, 128)" but got "rgb(255, 0, 0)" -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-001-expected.txt
r276552 r276553 29 29 PASS background-origin: "content-box" onto "padding-box" 30 30 PASS background-origin: "padding-box" onto "content-box" 31 PASS background-repeat (type: discrete) has testAddition function 32 PASS background-repeat: "round" onto "space" 33 PASS background-repeat: "space" onto "round" 31 34 PASS border-bottom-color (type: color) has testAddition function 32 35 FAIL border-bottom-color supports animating as color of rgb() with overflowed from and to values assert_equals: The value should be rgb(255, 128, 128) at 0ms expected "rgb(255, 128, 128)" but got "rgb(255, 0, 0)" -
trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-001-expected.txt
r276552 r276553 36 36 PASS background-origin uses discrete animation when animating between "padding-box" and "content-box" with effect easing 37 37 PASS background-origin uses discrete animation when animating between "padding-box" and "content-box" with keyframe easing 38 PASS background-repeat (type: discrete) has testInterpolation function 39 PASS background-repeat uses discrete animation when animating between "space" and "round" with linear easing 40 PASS background-repeat uses discrete animation when animating between "space" and "round" with effect easing 41 PASS background-repeat uses discrete animation when animating between "space" and "round" with keyframe easing 38 42 PASS border-bottom-color (type: color) has testInterpolation function 39 43 PASS border-bottom-color supports animating as color of rgb() -
trunk/Source/WebCore/ChangeLog
r276552 r276553 1 2021-04-24 Antoine Quint <graouts@webkit.org> 2 3 Support interpolation of the background-repeat shorthand 4 https://bugs.webkit.org/show_bug.cgi?id=225016 5 6 Reviewed by Dean Jackson. 7 8 * animation/CSSPropertyAnimation.cpp: 9 (WebCore::CSSPropertyAnimationWrapperMap::CSSPropertyAnimationWrapperMap): 10 1 11 2021-04-24 Antoine Quint <graouts@webkit.org> 2 12 -
trunk/Source/WebCore/animation/CSSPropertyAnimation.cpp
r276552 r276553 2471 2471 CSSPropertyBackground, // for background-color, background-position, background-image 2472 2472 CSSPropertyBackgroundPosition, 2473 CSSPropertyBackgroundRepeat, 2473 2474 CSSPropertyFont, // for font-size, font-weight 2474 2475 CSSPropertyWebkitMask, // for mask-position
Note:
See TracChangeset
for help on using the changeset viewer.