Changeset 287822 in webkit
- Timestamp:
- Jan 9, 2022 10:13:26 AM (6 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/css/parser/CSSPropertyParser.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r287820 r287822 1 2022-01-09 Antoine Quint <graouts@webkit.org> 2 3 translate() function in transform property should remove trailing 0 value when parsing 4 https://bugs.webkit.org/show_bug.cgi?id=235016 5 6 Reviewed by Antti Koivisto. 7 8 Mark WPT progression. 9 10 * web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative-expected.txt: 11 1 12 2022-01-08 Antoine Quint <graouts@webkit.org> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative-expected.txt
r287820 r287822 23 23 PASS KeyframeEffect.getKeyframes() returns expected values for animations with CSS variables as keyframe values in a shorthand property 24 24 PASS KeyframeEffect.getKeyframes() returns expected values for animations with a CSS variable which is overriden by the value in keyframe 25 FAIL KeyframeEffect.getKeyframes() returns expected values for animations with only custom property in a keyframe assert_equals: value for 'transform' on Keyframe #0 should match expected "translate(100px)" but got "translate(100px, 0px)" 25 PASS KeyframeEffect.getKeyframes() returns expected values for animations with only custom property in a keyframe 26 26 PASS KeyframeEffect.getKeyframes() reflects changes to @keyframes rules 27 27 -
trunk/Source/WebCore/ChangeLog
r287821 r287822 1 2022-01-09 Antoine Quint <graouts@webkit.org> 2 3 translate() function in transform property should remove trailing 0 value when parsing 4 https://bugs.webkit.org/show_bug.cgi?id=235016 5 6 Reviewed by Antti Koivisto. 7 8 * css/parser/CSSPropertyParser.cpp: 9 (WebCore::consumeTransformValue): 10 1 11 2022-01-09 Sam Weinig <weinig@apple.com> 2 12 -
trunk/Source/WebCore/css/parser/CSSPropertyParser.cpp
r287602 r287822 1939 1939 if (!parsedValue) 1940 1940 return nullptr; 1941 if (is<CSSPrimitiveValue>(parsedValue)) { 1942 auto isZero = downcast<CSSPrimitiveValue>(*parsedValue).isZero(); 1943 if (isZero && *isZero) 1944 parsedValue = nullptr; 1945 } 1941 1946 } 1942 1947 break;
Note: See TracChangeset
for help on using the changeset viewer.