Skip to content

Commit

Permalink
Update of ED report from new reffy run
Browse files Browse the repository at this point in the history
Using reffy commit 11.4.6.
  • Loading branch information
reffy-bot committed Feb 23, 2023
1 parent ba417b3 commit 830615d
Show file tree
Hide file tree
Showing 72 changed files with 4,442 additions and 3,586 deletions.
28 changes: 27 additions & 1 deletion ed/css/css-color-5.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,22 @@
],
"selectors": [],
"values": [
{
"name": "<color>",
"prose": "Colors in CSS are represented by the <color> type:",
"type": "type",
"value": "<absolute-color-base> | currentcolor | <system-color> | <device-cmyk()>"
},
{
"name": "<absolute-color-base>",
"type": "type",
"value": "<hex-color> | <absolute-color-function> | <named-color> | transparent"
},
{
"name": "<absolute-color-function>",
"type": "type",
"value": "<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <lab()> | <lch()> | <oklab()> | <oklch()> | <color()>"
},
{
"name": "color-mix()",
"type": "function",
Expand All @@ -67,7 +83,7 @@
{
"name": "rgb()",
"type": "function",
"value": "rgb( [<percentage> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( [<number> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( [ from <color> ]? [ <number> | <percentage> | none]{3} [ / [<alpha-value> | none] ]? )",
"value": "rgb( [ from <color> ]? [ <number> | <percentage> | none]{3} [ / [<alpha-value> | none] ]? )",
"values": [
{
"name": "r",
Expand Down Expand Up @@ -95,6 +111,11 @@
}
]
},
{
"name": "rgba()",
"type": "function",
"value": "rgba( [ from <color> ]? [ <number> | <percentage> | none]{3} [ / [<alpha-value> | none] ]? )"
},
{
"name": "<alpha-value>",
"type": "type",
Expand Down Expand Up @@ -131,6 +152,11 @@
}
]
},
{
"name": "hsla()",
"type": "function",
"value": "hsla([from <color>]? [<hue> | none] [<percentage> | <number> | none] [<percentage> | <number> | none] [ / [<alpha-value> | none] ]? )"
},
{
"name": "hwb()",
"type": "function",
Expand Down
54 changes: 47 additions & 7 deletions ed/css/css-color.json
Original file line number Diff line number Diff line change
Expand Up @@ -825,12 +825,32 @@
{
"name": "rgb()",
"type": "function",
"value": "rgb( [<percentage> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( [<number> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? ) | rgb( [<percentage> | none]{3} [ / [<alpha-value> | none] ]? ) | rgb( [<number> | none]{3} [ / [<alpha-value> | none] ]? )"
"value": "[ <legacy-rgb-syntax> | <modern-rgb-syntax> ]"
},
{
"name": "rgba()",
"prose": "Also, an rgba() legacy color syntax also exists, with an identical grammar and behavior to rgb().",
"type": "function"
"type": "function",
"value": "[ <legacy-rgba-syntax> | <modern-rgba-syntax> ]"
},
{
"name": "<legacy-rgb-syntax>",
"type": "type",
"value": "rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )"
},
{
"name": "<legacy-rgba-syntax>",
"type": "type",
"value": "rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )"
},
{
"name": "<modern-rgb-syntax>",
"type": "type",
"value": "rgb( [ <number> | <percentage> | none]{3} [ / [<alpha-value> | none] ]? )"
},
{
"name": "<modern-rgba-syntax>",
"type": "type",
"value": "rgba( [ <number> | <percentage> | none]{3} [ / [<alpha-value> | none] ]? )"
},
{
"name": "<hex-color>",
Expand Down Expand Up @@ -966,20 +986,40 @@
{
"name": "hsl()",
"type": "function",
"value": "hsl( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? ) | hsl( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )",
"value": "[ <legacy-hsl-syntax> | <modern-hsl-syntax> ]",
"values": [
{
"name": "HSL",
"prose": "HSL colors are specified as a triplet of hue, saturation, and lightness. The syntax of the hsl() function is:",
"prose": "HSL colors are specified as a triplet of hue, saturation, and lightness. The syntax of the hsl() and hsla() functions is:",
"type": "value",
"value": "HSL"
}
]
},
{
"name": "hsla()",
"prose": "Also, an hsla() legacy color syntax also exists, with an identical grammar and behavior to hsl().",
"type": "function"
"type": "function",
"value": "[ <legacy-hsla-syntax> | <modern-hsla-syntax> ]"
},
{
"name": "<modern-hsl-syntax>",
"type": "type",
"value": "hsl( [<hue> | none] [<percentage> | <number> | none] [<percentage> | <number> | none] [ / [<alpha-value> | none] ]? )"
},
{
"name": "<modern-hsla-syntax>",
"type": "type",
"value": "hsla( [<hue> | none] [<percentage> | <number> | none] [<percentage> | <number> | none] [ / [<alpha-value> | none] ]? )"
},
{
"name": "<legacy-hsl-syntax>",
"type": "type",
"value": "hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )"
},
{
"name": "<legacy-hsla-syntax>",
"type": "type",
"value": "hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )"
},
{
"name": "hwb()",
Expand Down
2 changes: 1 addition & 1 deletion ed/css/css-conditional-values.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"name": "if()",
"prose": "The if() function allows authors to set a property value (or parts thereof) to different values based on certain conditions.",
"type": "function",
"value": "if( <condition>, <consequent> [, <antecedent>]?) | if( <condition> then <consequent> [else <antecedent>]?) | if( <condition>, <consequent> [, <antecedent>]?)"
"value": "if( <condition>, <consequent>, <antecedent>? ) | if( <condition> then <consequent> [else <antecedent>]?) | if( <condition>, <consequent>, <antecedent>? )"
},
{
"name": "<consequent>",
Expand Down
2 changes: 1 addition & 1 deletion ed/css/css-easing.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
},
{
"name": "steps()",
"value": "steps(<integer>[, <step-position> ]?)",
"value": "steps(<integer>, <step-position>?)",
"type": "function",
"values": [
{
Expand Down
Loading

0 comments on commit 830615d

Please sign in to comment.