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 10.0.4.
  • Loading branch information
reffy-bot committed Sep 26, 2022
1 parent dfe8e92 commit d3afef3
Show file tree
Hide file tree
Showing 193 changed files with 28,133 additions and 19,916 deletions.
18 changes: 15 additions & 3 deletions tr/css/css-easing.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"spec": {
"title": "CSS Easing Functions Level 1",
"url": "https://www.w3.org/TR/css-easing-1/"
"title": "CSS Easing Functions Level 2",
"url": "https://drafts.csswg.org/css-easing-2/"
},
"properties": {},
"atrules": {},
"valuespaces": {
"<easing-function>": {
"value": "linear | <cubic-bezier-easing-function> | <step-easing-function>"
"value": "linear | <linear-easing-function> | <cubic-bezier-easing-function> | <step-easing-function>"
},
"<cubic-bezier-easing-function>": {
"value": "ease | ease-in | ease-out | ease-in-out | cubic-bezier(<number [0,1]>, <number>, <number [0,1]>, <number>)"
Expand All @@ -23,6 +23,18 @@
},
"<steps()>": {
"value": "steps(<integer>[, <step-position> ]?)"
},
"<linear-easing-function>": {
"value": "linear(<linear-stop-list>)"
},
"<linear-stop-list>": {
"value": "[ <linear-stop> ]#"
},
"<linear-stop>": {
"value": "<number> && <linear-stop-length>?"
},
"<linear-stop-length>": {
"value": "<percentage>{1,2}"
}
}
}
29 changes: 29 additions & 0 deletions tr/css/css-shared-element-transitions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"spec": {
"title": "CSS Shared Element Transitions Module Level 1",
"url": "https://drafts.csswg.org/css-shared-element-transitions-1/"
},
"properties": {
"page-transition-tag": {
"name": "page-transition-tag",
"value": "none | <custom-ident>",
"initial": "none",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "n/a",
"computedValue": "as specified",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"page-transition-tag",
"pageTransitionTag"
]
}
},
"atrules": {},
"valuespaces": {
"<pt-tag-selector>": {
"value": "'*' | <custom-ident>"
}
}
}
4 changes: 2 additions & 2 deletions tr/css/css-variables.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"spec": {
"title": "CSS Custom Properties for Cascading Variables Module Level 1",
"url": "https://www.w3.org/TR/css-variables-1/"
"title": "CSS Custom Properties for Cascading Variables Module Level 2",
"url": "https://drafts.csswg.org/css-variables-2/"
},
"properties": {},
"atrules": {},
Expand Down
66 changes: 66 additions & 0 deletions tr/css/scroll-animations.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,73 @@
"view-timeline",
"viewTimeline"
]
},
"animation-delay": {
"name": "animation-delay",
"value": "[ <'animation-delay-start'> <'animation-delay-end'>? | <timeline-range-name> ]#",
"initial": "see individual properties",
"appliesTo": "see individual properties",
"inherited": "see individual properties",
"percentages": "see individual properties",
"computedValue": "see individual properties",
"animationType": "see individual properties",
"canonicalOrder": "per grammar",
"styleDeclaration": [
"animation-delay",
"animationDelay"
]
},
"animation-range": {
"name": "animation-range",
"value": "[ <'animation-delay-start'> <'animation-delay-end'>? | <timeline-range-name> ]#",
"initial": "see individual properties",
"appliesTo": "see individual properties",
"inherited": "see individual properties",
"percentages": "see individual properties",
"computedValue": "see individual properties",
"animationType": "see individual properties",
"canonicalOrder": "per grammar",
"styleDeclaration": [
"animation-range",
"animationRange"
]
},
"animation-delay-start": {
"name": "animation-delay-start",
"value": "[ <time> | <timeline-range-name> <percentage> ]",
"initial": "0s",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "relative to the specified named timeline range",
"computedValue": "list, each item either a duration or a timeline range and progress percentage",
"canonicalOrder": "per grammar",
"animatable": "no",
"styleDeclaration": [
"animation-delay-start",
"animationDelayStart"
]
},
"animation-delay-end": {
"name": "animation-delay-end",
"value": "[ <time> | <timeline-range-name> <percentage> ]",
"initial": "0s",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "relative to the specified named timeline range",
"computedValue": "list, each item either a duration or a timeline range and progress percentage",
"canonicalOrder": "per grammar",
"animatable": "no",
"styleDeclaration": [
"animation-delay-end",
"animationDelayEnd"
]
}
},
"atrules": {},
"valuespaces": {
"<timeline-range-name>": {
"prose": "A named timeline range is a named segment of an animation timeline. The start of the segment is represented as 0% progress through the range; the end of the segment is represented as 100% progress through the range. Multiple named timeline ranges can be attached to a given timeline, and multiple such ranges can overlap. For example, the contain range of a view progress timeline overlaps with its cover range. Named timeline ranges are represented by the <timeline-range-name> value type, which indicates a CSS identifier representing one of the predefined named timeline ranges."
},
"<scroll()>": {
"value": "scroll( <axis>? <scroller>? )"
},
Expand All @@ -120,6 +183,9 @@
},
"<scroller>": {
"value": "root | nearest"
},
"<keyframe-selector>": {
"value": "from | to | <percentage> | <timeline-range-name> <percentage>"
}
}
}
15 changes: 5 additions & 10 deletions tr/dfns/CSS21.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"access": "public",
"informative": false,
"heading": {
"id": "",
"href": "https://www.w3.org/TR/CSS21/conform.html#null",
"href": "https://www.w3.org/TR/CSS21/conform.html",
"title": "Definitions",
"number": "3.1"
},
Expand All @@ -35,8 +34,7 @@
"access": "public",
"informative": false,
"heading": {
"id": "",
"href": "https://www.w3.org/TR/CSS21/conform.html#null",
"href": "https://www.w3.org/TR/CSS21/conform.html",
"title": "Definitions",
"number": "3.1"
},
Expand All @@ -55,8 +53,7 @@
"access": "public",
"informative": false,
"heading": {
"id": "",
"href": "https://www.w3.org/TR/CSS21/conform.html#null",
"href": "https://www.w3.org/TR/CSS21/conform.html",
"title": "Definitions",
"number": "3.1"
},
Expand All @@ -74,8 +71,7 @@
"access": "private",
"informative": false,
"heading": {
"id": "",
"href": "https://www.w3.org/TR/CSS21/cascade.html#null",
"href": "https://www.w3.org/TR/CSS21/cascade.html",
"title": "Used values",
"number": "6.1.3"
},
Expand All @@ -93,8 +89,7 @@
"access": "private",
"informative": false,
"heading": {
"id": "",
"href": "https://www.w3.org/TR/CSS21/tables.html#null",
"href": "https://www.w3.org/TR/CSS21/tables.html",
"title": "Introduction to tables",
"number": "17.1"
},
Expand Down
Loading

0 comments on commit d3afef3

Please sign in to comment.