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 07a60de9fb8416b35c0eae396dbab7471776a8e4.
  • Loading branch information
reffy-bot committed Nov 16, 2020
1 parent 1ed6d9c commit e1ca7c1
Show file tree
Hide file tree
Showing 501 changed files with 65,282 additions and 33,223 deletions.
6 changes: 3 additions & 3 deletions tr/css/css-color-adjust.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"properties": {
"color-scheme": {
"name": "color-scheme",
"value": "normal | [ light | dark | <custom-ident> ]+ | only && light",
"value": "normal | [ light | dark | <custom-ident> ]+",
"initial": "normal",
"appliesTo": "all elements",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "the keyword normal, or optional only keyword and ordered list of specified color scheme keywords",
"computedValue": "the keyword normal, or an ordered list of specified color scheme keywords",
"canonicalOrder": "per grammar",
"animationType": "discrete"
},
Expand All @@ -24,7 +24,7 @@
"percentages": "n/a",
"computedValue": "as specified",
"canonicalOrder": "per grammar",
"animationType": "discrete"
"animatable": "not animatable"
},
"color-adjust": {
"name": "color-adjust",
Expand Down
15 changes: 6 additions & 9 deletions tr/css/css-color.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"color": {
"name": "color",
"value": "<color>",
"initial": "black",
"initial": "CanvasText",
"appliesTo": "all elements",
"inherited": "yes",
"percentages": "N/A",
Expand Down Expand Up @@ -43,7 +43,10 @@
},
"valuespaces": {
"<color>": {
"value": "<hex-color> | <named-color> | currentcolor | transparent <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <lab()> | <lch()> | <gray()> | <color()> | <device-cmyk()> | <system-color>"
"value": "<hex-color> | <named-color> | currentcolor | transparent | <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <lab()> | <lch()> | <color()> | <device-cmyk()> | <system-color>"
},
"<hue>": {
"value": "<number> | <angle>"
},
"<rgb()>": {
"value": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? )"
Expand All @@ -54,9 +57,6 @@
"<hsl()>": {
"value": "hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? )"
},
"<hue>": {
"value": "<number> | <angle>"
},
"<hwb()>": {
"value": "hwb( <hue> <percentage> <percentage> [ / <alpha-value> ]? )"
},
Expand All @@ -66,11 +66,8 @@
"<lch()>": {
"value": "lch( <percentage> <number> <hue> [ / <alpha-value> ]? )"
},
"<gray()>": {
"value": "gray( <number> [ / <alpha-value> ]? )"
},
"<color()>": {
"value": "color( [ <ident>? [ <number>+ | <string> ] [ / <alpha-value> ]? ]# , <color>? )"
"value": "color( [ [<ident> | <dashed-ident>]? [ <number-percentage>+ | <string> ] [ / <alpha-value> ]? ]# , <color>? )"
},
"<device-cmyk()>": {
"value": "device-cmyk( <cmyk-component>{4} [ / <alpha-value> ]? , <color>? )"
Expand Down
67 changes: 65 additions & 2 deletions tr/css/css-values.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,20 @@
"descriptors": {},
"valuespaces": {
"<url>": {
"value": "url( <string> <url-modifier>* )"
"value": "url( <string> <url-modifier>* ) | src( <string> <url-modifier>* )"
},
"<ratio>": {
"value": "<number [0,∞]> [ / <number [0,∞]> ]?"
},
"<position>": {
"value": "[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]"
},
"<attr()>": {
"value": "attr( <wq-name> <attr-type>? , <declaration-value>?)"
},
"<attr-type>": {
"value": "string | url | ident | color | number | percentage | length | angle | time | frequency | flex | <dimension-unit>"
},
"<calc()>": {
"value": "calc( <calc-sum> )"
},
Expand All @@ -24,14 +33,68 @@
"<clamp()>": {
"value": "clamp( <calc-sum>#{3} )"
},
"<round()>": {
"value": "round( <rounding-strategy>?, <calc-sum>, <calc-sum> )"
},
"<mod()>": {
"value": "mod( <calc-sum>, <calc-sum> )"
},
"<rem()>": {
"value": "rem( <calc-sum>, <calc-sum> )"
},
"<sin()>": {
"value": "sin( <calc-sum> )"
},
"<cos()>": {
"value": "cos( <calc-sum> )"
},
"<tan()>": {
"value": "tan( <calc-sum> )"
},
"<asin()>": {
"value": "asin( <calc-sum> )"
},
"<acos()>": {
"value": "acos( <calc-sum> )"
},
"<atan()>": {
"value": "atan( <calc-sum> )"
},
"<atan2()>": {
"value": "atan2( <calc-sum>, <calc-sum> )"
},
"<pow()>": {
"value": "pow( <calc-sum>, <calc-sum> )"
},
"<sqrt()>": {
"value": "sqrt( <calc-sum> )"
},
"<hypot()>": {
"value": "hypot( <calc-sum># )"
},
"<log()>": {
"value": "log( <calc-sum>, <calc-sum>? )"
},
"<exp()>": {
"value": "exp( <calc-sum> )"
},
"<abs()>": {
"value": "abs( <calc-sum> )"
},
"<sign()>": {
"value": "sign( <calc-sum> )"
},
"<calc-sum>": {
"value": "<calc-product> [ [ '+' | '-' ] <calc-product> ]*"
},
"<calc-product>": {
"value": "<calc-value> [ [ '*' | '/' ] <calc-value> ]*"
},
"<calc-value>": {
"value": "<number> | <dimension> | <percentage> | ( <calc-sum> )"
"value": "<number> | <dimension> | <percentage> | <calc-constant> | ( <calc-sum> )"
},
"<calc-constant>": {
"value": "e | pi | infinity | -infinity | NaN"
},
"<length-percentage>": {
"value": "[ <length> | <percentage> ]"
Expand Down
Loading

0 comments on commit e1ca7c1

Please sign in to comment.