LibWeb/CSS: Use "0s" as the initial value for animation-duration

This commit is contained in:
Tim Ledbetter 2025-03-22 00:50:02 +00:00 committed by Alexander Kalenik
commit ecd6636b3e
Notes: github-actions[bot] 2025-03-22 16:05:28 +00:00
6 changed files with 62 additions and 13 deletions

View file

@ -9,18 +9,18 @@ All supported properties and their default values exposed from CSSStylePropertie
'WebkitAlignSelf': 'auto'
'webkitAlignSelf': 'auto'
'-webkit-align-self': 'auto'
'WebkitAnimation': 'none auto ease 1 normal running 0s none'
'webkitAnimation': 'none auto ease 1 normal running 0s none'
'-webkit-animation': 'none auto ease 1 normal running 0s none'
'WebkitAnimation': 'none 0s ease 1 normal running 0s none'
'webkitAnimation': 'none 0s ease 1 normal running 0s none'
'-webkit-animation': 'none 0s ease 1 normal running 0s none'
'WebkitAnimationDelay': '0s'
'webkitAnimationDelay': '0s'
'-webkit-animation-delay': '0s'
'WebkitAnimationDirection': 'normal'
'webkitAnimationDirection': 'normal'
'-webkit-animation-direction': 'normal'
'WebkitAnimationDuration': 'auto'
'webkitAnimationDuration': 'auto'
'-webkit-animation-duration': 'auto'
'WebkitAnimationDuration': '0s'
'webkitAnimationDuration': '0s'
'-webkit-animation-duration': '0s'
'WebkitAnimationFillMode': 'none'
'webkitAnimationFillMode': 'none'
'-webkit-animation-fill-mode': 'none'
@ -137,13 +137,13 @@ All supported properties and their default values exposed from CSSStylePropertie
'align-items': 'normal'
'alignSelf': 'auto'
'align-self': 'auto'
'animation': 'none auto ease 1 normal running 0s none'
'animation': 'none 0s ease 1 normal running 0s none'
'animationDelay': '0s'
'animation-delay': '0s'
'animationDirection': 'normal'
'animation-direction': 'normal'
'animationDuration': 'auto'
'animation-duration': 'auto'
'animationDuration': '0s'
'animation-duration': '0s'
'animationFillMode': 'none'
'animation-fill-mode': 'none'
'animationIterationCount': '1'