Changeset 287764 in webkit
- Timestamp:
- Jan 7, 2022 10:56:47 AM (6 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/css/css-transitions/events-004-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/style/Styleable.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r287760 r287764 1 2022-01-07 Antoine Quint <graouts@webkit.org> 2 3 Transitions without an explicit property-name should not be considered 4 https://bugs.webkit.org/show_bug.cgi?id=234960 5 6 Reviewed by Darin Adler. 7 8 Mark WPT progression. 9 10 * web-platform-tests/css/css-transitions/events-004-expected.txt: 11 1 12 2022-01-07 Youenn Fablet <youenn@apple.com> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-transitions/events-004-expected.txt
r267650 r287764 1 1 2 2 PASS repeating lists 3 FAIL truncating lists assert_approx_equals: expected 0.02 +/- 0.0005 but got 0.01 3 PASS truncating lists 4 4 -
trunk/Source/WebCore/ChangeLog
r287763 r287764 1 2022-01-07 Antoine Quint <graouts@webkit.org> 2 3 Transitions without an explicit property-name should not be considered 4 https://bugs.webkit.org/show_bug.cgi?id=234960 5 6 Reviewed by Darin Adler. 7 8 When we fill the transition-property to match the number of another `transition-` 9 property, we should not consider running a transition for that property. 10 11 * style/Styleable.cpp: 12 (WebCore::transitionMatchesProperty): 13 1 14 2022-01-07 Youenn Fablet <youenn@apple.com> 2 15 -
trunk/Source/WebCore/style/Styleable.cpp
r287762 r287764 317 317 static bool transitionMatchesProperty(const Animation& transition, CSSPropertyID property) 318 318 { 319 if (transition.isPropertyFilled()) 320 return false; 321 319 322 auto mode = transition.property().mode; 320 323 if (mode == Animation::TransitionMode::None || mode == Animation::TransitionMode::UnknownProperty)
Note: See TracChangeset
for help on using the changeset viewer.