Skip to content

Commit

Permalink
Update of TR report from new reffy run
Browse files Browse the repository at this point in the history
Using reffy commit 12.0.0.
  • Loading branch information
reffy-bot committed Mar 3, 2023
1 parent 4cb1b74 commit 91cccec
Show file tree
Hide file tree
Showing 18 changed files with 1,422 additions and 1,025 deletions.
31 changes: 13 additions & 18 deletions tr/css/css-animations.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
{
"name": "animation-duration",
"value": "<time>#",
"value": "<time [0s,∞]>#",
"initial": "0s",
"appliesTo": "all elements",
"inherited": "no",
Expand All @@ -45,10 +45,10 @@
"animationType": "not animatable",
"values": [
{
"name": "<time>",
"prose": "The <time> specifies the length of time that an animation takes to complete one cycle. A negative <time> is invalid. If the <time> is 0s, like the initial value, the keyframes of the animation have no effect, but the animation itself still occurs instantaneously. Specifically, start and end events are fired; if animation-fill-mode is set to backwards or both, the first frame of the animation, as defined by animation-direction, will be displayed during the animation-delay. Then the last frame of the animation, as defined by animation-direction, will be displayed if animation-fill-mode is set to forwards or both. If animation-fill-mode is set to none then the animation has no visible effect.",
"name": "<time [0s,∞]>",
"prose": "The <time> specifies the length of time that an animation takes to complete one cycle. A negative <time> is invalid. If the <time> is 0s, like the initial value, the keyframes of the animation have no effect, but the animation itself still occurs instantaneously. Specifically, start and end events are fired; if animation-fill-mode is set to backwards or both, the first frame of the animation, as defined by animation-direction, will be displayed during the animation-delay. After the animation-delay the last frame of the animation, as defined by animation-direction, will be displayed if animation-fill-mode is set to forwards or both. If animation-fill-mode is set to none the animation will have no visible effect.",
"type": "value",
"value": "<time>"
"value": "<time [0s,∞]>"
}
],
"styleDeclaration": [
Expand All @@ -58,12 +58,12 @@
},
{
"name": "animation-timing-function",
"value": "<timing-function>#",
"value": "<easing-function>#",
"initial": "ease",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "list, each item a computed <timing-function>",
"computedValue": "list, each item a computed <easing-function>",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"styleDeclaration": [
Expand All @@ -89,10 +89,10 @@
"value": "infinite"
},
{
"name": "<number>",
"name": "<number [0,∞]>",
"prose": "The animation will repeat the specified number of times. If the number is not an integer, the animation will end partway through its last cycle. Negative numbers are invalid. A value of 0 is valid and, similar to an animation-duration of 0s, causes the animation to occur instantaneously.",
"type": "value",
"value": "<number>"
"value": "<number [0,∞]>"
}
],
"styleDeclaration": [
Expand Down Expand Up @@ -179,7 +179,7 @@
"percentages": "N/A",
"computedValue": "list, each item a duration",
"canonicalOrder": "per grammar",
"animatable": "no",
"animationType": "not animatable",
"values": [
{
"name": "<time>",
Expand Down Expand Up @@ -236,7 +236,7 @@
},
{
"name": "animation",
"value": "<single-animation> #",
"value": "<single-animation>#",
"initial": "see individual properties",
"appliesTo": "all elements",
"inherited": "no",
Expand Down Expand Up @@ -272,11 +272,11 @@
{
"name": "<keyframe-selector>",
"type": "type",
"value": "from | to | <percentage>"
"value": "from | to | <percentage [0,100]>"
},
{
"name": "<single-animation-iteration-count>",
"value": "infinite | <number>",
"value": "infinite | <number [0,∞]>",
"type": "type"
},
{
Expand All @@ -296,13 +296,8 @@
},
{
"name": "<single-animation>",
"value": "<time> || <timing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ]",
"value": "<time> || <easing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ]",
"type": "type"
},
{
"name": "AnimationEvent()",
"value": "AnimationEvent(type, animationEventInitDict)",
"type": "function"
}
]
}
Loading

0 comments on commit 91cccec

Please sign in to comment.