Changeset 287509 in webkit
- Timestamp:
- Jan 1, 2022 11:22:11 PM (7 months ago)
- Location:
- trunk
- Files:
-
- 8 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/css/longhand-overrides-shorthand-prefixing-expected.txt (modified) (1 diff)
-
LayoutTests/fast/css/longhand-overrides-shorthand-prefixing.html (modified) (1 diff)
-
LayoutTests/fast/css/transform-inline-style-remove-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/css/css-animations/parsing/animation-valid-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/css/CSSProperties.json (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r287508 r287509 1 2022-01-01 Antoine Quint <graouts@webkit.org> 2 3 "animation" shorthand does not parse values in the right order 4 https://bugs.webkit.org/show_bug.cgi?id=234788 5 6 Reviewed by Dean Jackson. 7 8 Update the order in which animation-name is serialized in the "animation" shorthand 9 for some non-WPT tests. 10 11 * fast/css/longhand-overrides-shorthand-prefixing-expected.txt: 12 * fast/css/longhand-overrides-shorthand-prefixing.html: 13 * fast/css/transform-inline-style-remove-expected.txt: 14 1 15 2022-01-01 Diego Pino Garcia <dpino@igalia.com> 2 16 -
trunk/LayoutTests/fast/css/longhand-overrides-shorthand-prefixing-expected.txt
r205809 r287509 4 4 5 5 6 Setting "animation" to " move 2s" then "animation-duration" to "10s" accessing "animation"6 Setting "animation" to "2s move" then "animation-duration" to "10s" accessing "animation" 7 7 PASS element.style.animation 8 8 PASS element.style.cssText 9 9 10 Setting "animation" to " move 2s" then "animation-duration" to "10s" accessing "webkitAnimation"10 Setting "animation" to "2s move" then "animation-duration" to "10s" accessing "webkitAnimation" 11 11 PASS element.style.animation 12 12 PASS element.style.cssText 13 13 14 Setting "-webkit-animation" to " move 2s" then "animation-duration" to "10s" accessing "animation"14 Setting "-webkit-animation" to "2s move" then "animation-duration" to "10s" accessing "animation" 15 15 PASS element.style.webkitAnimation 16 16 PASS element.style.cssText 17 17 18 Setting "-webkit-animation" to " move 2s" then "animation-duration" to "10s" accessing "webkitAnimation"18 Setting "-webkit-animation" to "2s move" then "animation-duration" to "10s" accessing "webkitAnimation" 19 19 PASS element.style.webkitAnimation 20 20 PASS element.style.cssText 21 21 22 Setting "animation" to " move 2s" then "-webkit-animation-duration" to "10s" accessing "animation"22 Setting "animation" to "2s move" then "-webkit-animation-duration" to "10s" accessing "animation" 23 23 PASS element.style.animation 24 24 PASS element.style.cssText 25 25 26 Setting "animation" to " move 2s" then "-webkit-animation-duration" to "10s" accessing "webkitAnimation"26 Setting "animation" to "2s move" then "-webkit-animation-duration" to "10s" accessing "webkitAnimation" 27 27 PASS element.style.animation 28 28 PASS element.style.cssText 29 29 30 Setting "-webkit-animation" to " move 2s" then "-webkit-animation-duration" to "10s" accessing "animation"30 Setting "-webkit-animation" to "2s move" then "-webkit-animation-duration" to "10s" accessing "animation" 31 31 PASS element.style.webkitAnimation 32 32 PASS element.style.cssText 33 33 34 Setting "-webkit-animation" to " move 2s" then "-webkit-animation-duration" to "10s" accessing "webkitAnimation"34 Setting "-webkit-animation" to "2s move" then "-webkit-animation-duration" to "10s" accessing "webkitAnimation" 35 35 PASS element.style.webkitAnimation 36 36 PASS element.style.cssText -
trunk/LayoutTests/fast/css/longhand-overrides-shorthand-prefixing.html
r205809 r287509 64 64 } 65 65 66 testPropertyVariants("animation", "animation-duration", " move 2s", "move 10s", "10s");66 testPropertyVariants("animation", "animation-duration", "2s move", "10s move", "10s"); 67 67 68 68 successfullyParsed = true; -
trunk/LayoutTests/fast/css/transform-inline-style-remove-expected.txt
r267644 r287509 20 20 transform origin Y (after): 21 21 22 animation (before): test 5s ease-in-out infinite alternate22 animation (before): 5s ease-in-out infinite alternate test 23 23 animation name (before): test 24 24 animation duration (before): 5s -
trunk/LayoutTests/imported/w3c/ChangeLog
r287499 r287509 1 2022-01-01 Antoine Quint <graouts@webkit.org> 2 3 "animation" shorthand does not parse values in the right order 4 https://bugs.webkit.org/show_bug.cgi?id=234788 5 6 Reviewed by Dean Jackson. 7 8 Mark a new WPT progression. 9 10 * web-platform-tests/css/css-animations/parsing/animation-valid-expected.txt: 11 1 12 2021-12-31 Tim Nguyen <ntim@apple.com> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/css/css-animations/parsing/animation-valid-expected.txt
r267650 r287509 9 9 PASS e.style['animation'] = "none" should set the property value 10 10 PASS e.style['animation'] = "anim" should set the property value 11 FAIL e.style['animation'] = "anim paused both reverse 4 1s -3s cubic-bezier(0, -2, 1, 3)" should set the property value assert_equals: serialization should be canonical expected "1s cubic-bezier(0, -2, 1, 3) -3s 4 reverse both paused anim" but got "anim 1s cubic-bezier(0, -2, 1, 3) -3s 4 reverse both paused" 12 FAIL e.style['animation'] = "anim paused both reverse, 4 1s -3s cubic-bezier(0, -2, 1, 3)" should set the property value assert_equals: serialization should be canonical expected "0s ease 0s 1 reverse both paused anim, 1s cubic-bezier(0, -2, 1, 3) -3s 4 normal none running none" but got " anim reverse both paused, 1s cubic-bezier(0, -2, 1, 3) -3s 4"11 PASS e.style['animation'] = "anim paused both reverse 4 1s -3s cubic-bezier(0, -2, 1, 3)" should set the property value 12 FAIL e.style['animation'] = "anim paused both reverse, 4 1s -3s cubic-bezier(0, -2, 1, 3)" should set the property value assert_equals: serialization should be canonical expected "0s ease 0s 1 reverse both paused anim, 1s cubic-bezier(0, -2, 1, 3) -3s 4 normal none running none" but got "reverse both paused anim, 1s cubic-bezier(0, -2, 1, 3) -3s 4" 13 13 -
trunk/Source/WebCore/ChangeLog
r287507 r287509 1 2022-01-01 Antoine Quint <graouts@webkit.org> 2 3 "animation" shorthand does not parse values in the right order 4 https://bugs.webkit.org/show_bug.cgi?id=234788 5 6 Reviewed by Dean Jackson. 7 8 The animation-name should be parsed last, not first. 9 10 * css/CSSProperties.json: 11 1 12 2022-01-01 Jean-Yves Avenard <jya@apple.com> 2 13 -
trunk/Source/WebCore/css/CSSProperties.json
r287487 r287509 900 900 ], 901 901 "longhands": [ 902 "animation-name",903 902 "animation-duration", 904 903 "animation-timing-function", … … 907 906 "animation-direction", 908 907 "animation-fill-mode", 909 "animation-play-state" 908 "animation-play-state", 909 "animation-name" 910 910 ] 911 911 },
Note: See TracChangeset
for help on using the changeset viewer.