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 5.2.1.
  • Loading branch information
reffy-bot committed Dec 20, 2021
1 parent 2eff136 commit d7c9186
Show file tree
Hide file tree
Showing 162 changed files with 8,757 additions and 5,408 deletions.
60 changes: 47 additions & 13 deletions tr/css/css-color-5.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,71 @@
"url": "https://www.w3.org/TR/css-color-5/"
},
"properties": {},
"descriptors": {},
"descriptors": {
"src": [
{
"name": "src",
"for": "@color-profile",
"value": "<url>",
"initial": "n/a"
}
],
"rendering-intent": [
{
"name": "rendering-intent",
"for": "@color-profile",
"value": "relative-colorimetric | absolute-colorimetric | perceptual | saturation",
"initial": "relative-colorimetric"
}
],
"components": [
{
"name": "components",
"for": "@color-profile",
"value": "<ident>#",
"initial": "n/a"
}
]
},
"valuespaces": {
"<color-space>": {
"value": "srgb | hsl | hwb | xyz | lab | lch"
},
"<color-mix()>": {
"value": "color-mix( in <color-space> , [ <color> && <percentage [0,100]>? ]#{2} <hue-adjuster>?)"
},
"<hue-adjuster>": {
"value": "shorter | longer | increasing | decreasing | specified"
"value": "color-mix( <color-interpolation-method> , [ <color> && <percentage [0,100]>? ]#{2})"
},
"<color-contrast()>": {
"value": "color-contrast( <color> vs <color>#{2,} [ to [<number> | AA | AA-large | AAA | AAA-large]]? )"
},
"<rgb()>": {
"value": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( [ from <color> ]? [ <number> | <percentage> ]{3} [ / <alpha-value> ]? )"
"value": "rgb( [<percentage> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( [<number> | none]{3} [ / [<alpha-value> | none] ]? rgb( [ from <color> ]? [ <number> | <percentage> | none]{3} [ / <alpha-value> ]? )"
},
"<alpha-value>": {
"value": "<number> | <percentage>"
},
"<hsl()>": {
"value": "hsl([from <color>]? <hue> <percentage> <percentage> [ / <alpha-value> ]? )"
"value": "hsl(([from <color>]? [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )"
},
"<hwb()>": {
"value": "hwb([from <color>]? <hue> <percentage> <percentage> [ / <alpha-value> ]? )"
"value": "hwb([from <color>]? [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )"
},
"<lab()>": {
"value": "lab([from <color>]? <percentage> <number> <number> [ / <alpha-value> ]? )"
"value": "lab([from <color>]? [<percentage> | none] [<number> | none] [<number> | none] [ / [<alpha-value> | none] ]? )"
},
"<oklab()>": {
"value": "oklab([from <color>]? [<percentage> | none] [<number> | none] [<number> | none] [ / [<alpha-value> | none] ]? )"
},
"<lch()>": {
"value": "lch([from <color>]? <percentage> <number> <hue> [ / <alpha-value> ]? )"
"value": "lch([from <color>]? [<percentage> | none] [<number> | none] [<hue> | none] [ / [<alpha-value> | none] ]? )"
},
"<oklch()>": {
"value": "oklch([from <color>]? [<percentage> | none] [<number> | none] [<hue> | none] [ / [<alpha-value> | none] ]? )"
},
"<color()>": {
"value": "color( [from <color>]? <colorspace-params> [ / <alpha-value> ]? )"
},
"<device-cmyk()>": {
"value": "device-cmyk( <cmyk-component>{4} [ / <alpha-value> ]? )"
},
"<cmyk-component>": {
"value": "<number> | <percentage>"
}
}
}
66 changes: 28 additions & 38 deletions tr/css/css-color.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,65 +33,55 @@
]
}
},
"descriptors": {
"src": [
{
"name": "src",
"for": "@color-profile",
"value": "<url>",
"initial": "n/a"
}
],
"rendering-intent": [
{
"name": "rendering-intent",
"for": "@color-profile",
"value": "relative-colorimetric | absolute-colorimetric | perceptual | saturation",
"initial": "relative-colorimetric"
}
],
"components": [
{
"name": "components",
"for": "@color-profile",
"value": "<ident>#",
"initial": "n/a"
}
]
},
"descriptors": {},
"valuespaces": {
"<color>": {
"value": "<hex-color> | <named-color> | currentcolor | transparent | <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <lab()> | <lch()> | <color()> | <device-cmyk()> | <system-color>"
"value": "<absolute-color-base> | currentcolor | <system-color> | <device-cmyk()>"
},
"<absolute-color-base>": {
"value": "<hex-color> | <named-color> | transparent | <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <lab()> | <lch()> | <oklab()> | <oklch()> | <color()>"
},
"<hue>": {
"value": "<number> | <angle>"
"value": "<number> | <angle> | none"
},
"<rgb()>": {
"value": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? )"
"value": "rgb( [<percentage> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( [<number> | none]{3} [ / [<alpha-value> | none] ]? )"
},
"<alpha-value>": {
"value": "<number> | <percentage>"
},
"<hsl()>": {
"value": "hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? )"
"value": "hsl( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )"
},
"<hwb()>": {
"value": "hwb( <hue> <percentage> <percentage> [ / <alpha-value> ]? )"
"value": "hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )"
},
"<lab()>": {
"value": "lab( <percentage> <number> <number> [ / <alpha-value> ]? )"
"value": "lab( [<percentage> | none] [<number> | none] [<number> | none] [ / [<alpha-value> | none] ]? )"
},
"<lch()>": {
"value": "lch( <percentage> <number> <hue> [ / <alpha-value> ]? )"
"value": "lch( [<percentage> | none] [<number> | none] [<hue> | none] [ / [<alpha-value> | none] ]? )"
},
"<oklab()>": {
"value": "oklab( [<percentage> | none] [<number> | none] [<number> | none] [ / [<alpha-value> | none] ]? )"
},
"<oklch()>": {
"value": "oklch( [<percentage> | none] [<number> | none] [<hue> | none] [ / [<alpha-value> | none] ]? )"
},
"<color()>": {
"value": "color( [<ident> | <dashed-ident>] [ <number-percentage>+ ] [ / <alpha-value> ]? )"
"value": "color( <colorspace-params> [ / <alpha-value> ]? )"
},
"<device-cmyk()>": {
"value": "device-cmyk( <cmyk-component>{4} [ / <alpha-value> ]? , <color>? )"
"<rectangular-color-space>": {
"value": "srgb | srgb-linear | lab | oklab | xyz | xyz-d50 | xyz-d65"
},
"<cmyk-component>": {
"value": "<number> | <percentage>"
"<polar-color-space>": {
"value": "hsl | hwb | lch | oklch"
},
"<hue-interpolation-method>": {
"value": "[ shorter | longer | increasing | decreasing | specified ] hue"
},
"<color-interpolation-method>": {
"value": "in [ <rectangular-color-space> | <polar-color-space> <hue-interpolation-method>? ]"
}
}
}
6 changes: 0 additions & 6 deletions tr/css/css-values.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@
"<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 Down
70 changes: 39 additions & 31 deletions tr/css/mediaqueries-5.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,30 @@
"type": "discrete"
}
],
"horizontal-viewport-segments": [
{
"name": "horizontal-viewport-segments",
"for": "@media",
"value": "<integer>",
"type": "range"
}
],
"vertical-viewport-segments": [
{
"name": "vertical-viewport-segments",
"for": "@media",
"value": "<integer>",
"type": "range"
}
],
"display-mode": [
{
"name": "display-mode",
"for": "@media",
"value": "fullscreen | standalone | minimal-ui | browser",
"type": "discrete"
}
],
"resolution": [
{
"name": "resolution",
Expand Down Expand Up @@ -173,6 +197,14 @@
"type": "discrete"
}
],
"nav-controls": [
{
"name": "nav-controls",
"for": "@media",
"value": "none | back",
"type": "discrete"
}
],
"video-color-gamut": [
{
"name": "video-color-gamut",
Expand All @@ -189,30 +221,6 @@
"type": "discrete"
}
],
"video-width": [
{
"name": "video-width",
"for": "@media",
"value": "<length>",
"type": "range"
}
],
"video-height": [
{
"name": "video-height",
"for": "@media",
"value": "<length>",
"type": "range"
}
],
"video-resolution": [
{
"name": "video-resolution",
"for": "@media",
"value": "<resolution> | infinite",
"type": "range"
}
],
"scripting": [
{
"name": "scripting",
Expand Down Expand Up @@ -241,23 +249,23 @@
{
"name": "prefers-contrast",
"for": "@media",
"value": "no-preference | high | low | forced",
"value": "no-preference | less | more | custom",
"type": "discrete"
}
],
"prefers-color-scheme": [
"forced-colors": [
{
"name": "prefers-color-scheme",
"name": "forced-colors",
"for": "@media",
"value": "light | dark",
"value": "none | active",
"type": "discrete"
}
],
"forced-colors": [
"prefers-color-scheme": [
{
"name": "forced-colors",
"name": "prefers-color-scheme",
"for": "@media",
"value": "none | active",
"value": "light | dark",
"type": "discrete"
}
],
Expand Down
Loading

0 comments on commit d7c9186

Please sign in to comment.