mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb/CSS: Use "0s" as the initial value for animation-duration
This commit is contained in:
parent
e1f6a170d5
commit
ecd6636b3e
Notes:
github-actions[bot]
2025-03-22 16:05:28 +00:00
Author: https://github.com/tcl3
Commit: ecd6636b3e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4041
6 changed files with 62 additions and 13 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue