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 13.0.0.
  • Loading branch information
reffy-bot committed Apr 28, 2023
1 parent 99acd1f commit fc7a112
Show file tree
Hide file tree
Showing 36 changed files with 1,418 additions and 1,481 deletions.
4 changes: 2 additions & 2 deletions ed/css/css-fonts-5.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
{
"name": "ex-height | cap-height | ch-width | ic-width | ic-height",
"prose": "Specifies the font metric to normalize, defaulting to ex-height: If the required font metric cannot be derived from a font, then that font’s size is not adjusted. [Issue #6384]",
"prose": "Specifies the font metric to normalize, defaulting to ex-height: w3c/csswg-drafts/6384[css-fonts-5] font-size-adjust with missing metrics",
"type": "value",
"value": "ex-height | cap-height | ch-width | ic-width | ic-height"
},
Expand Down Expand Up @@ -65,7 +65,7 @@
},
{
"name": "from-font",
"prose": "Computes to the <number> corresponding to the specified metric of the first available font. Shouldn’t this be the first available font that can provide the required metric? [Issue #6384]",
"prose": "Computes to the <number> corresponding to the specified metric of the first available font. w3c/csswg-drafts/6384[css-fonts-5] font-size-adjust with missing metrics",
"type": "value",
"value": "from-font"
}
Expand Down
34 changes: 27 additions & 7 deletions ed/css/css-images-4.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,24 +149,24 @@
"value": "[ <linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()> | <repeating-conic-gradient()> ]"
},
{
"name": "linear-gradient()",
"type": "function",
"value": "linear-gradient( [ [ <angle> | to <side-or-corner> ] || <color-interpolation-method> ]? , <color-stop-list> )"
"name": "<linear-gradient-syntax>",
"type": "type",
"value": "[ [ <angle> | to <side-or-corner> ] || <color-interpolation-method> ]? , <color-stop-list>"
},
{
"name": "<side-or-corner>",
"type": "type",
"value": "[left | right] || [top | bottom]"
},
{
"name": "radial-gradient()",
"type": "function",
"value": "radial-gradient( [ [ [ <rg-ending-shape> || <rg-size> ]? [ at <position> ]? ] || <color-interpolation-method>]? , <color-stop-list> )"
"name": "<radial-gradient-syntax>",
"type": "type",
"value": "[ [ [ <rg-ending-shape> || <rg-size> ]? [ at <position> ]? ] || <color-interpolation-method>]? , <color-stop-list>"
},
{
"name": "conic-gradient()",
"type": "function",
"value": "conic-gradient( [ [ [ from <angle> ]? [ at <position> ]? ] || <color-interpolation-method> ]? , <angular-color-stop-list> )",
"value": "conic-gradient( [ <conic-gradient-syntax> ] )",
"values": [
{
"name": "<angle>",
Expand All @@ -182,6 +182,11 @@
}
]
},
{
"name": "<conic-gradient-syntax>",
"type": "type",
"value": "[ [ [ from <angle> ]? [ at <position> ]? ] || <color-interpolation-method> ]? , <angular-color-stop-list>"
},
{
"name": "repeating-linear-gradient()",
"prose": "In addition to linear-gradient(), radial-gradient(), and conic-gradient(), this specification defines repeating-linear-gradient(), repeating-radial-gradient(), and repeating-conic-gradient() values. These notations take the same values and are interpreted the same as their respective non-repeating siblings defined previously.",
Expand Down Expand Up @@ -211,6 +216,21 @@
}
]
},
{
"name": "<repeating-conic-gradient()>",
"type": "type",
"value": "repeating-conic-gradient( [ <conic-gradient-syntax> ] )"
},
{
"name": "<repeating-linear-gradient()>",
"type": "type",
"value": "repeating-linear-gradient( [ <linear-gradient-syntax> ] )"
},
{
"name": "<repeating-radial-gradient()>",
"type": "type",
"value": "repeating-radial-gradient( [ <radial-gradient-syntax> ] )"
},
{
"name": "<color-stop-list>",
"type": "type",
Expand Down
24 changes: 22 additions & 2 deletions ed/css/css-images.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,12 @@
"name": "linear-gradient()",
"prose": "The linear-gradient() notation specifies a linear gradient in CSS. Its syntax is as follows:",
"type": "function",
"value": "linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"
"value": "linear-gradient( [ <linear-gradient-syntax> ] )"
},
{
"name": "<linear-gradient-syntax>",
"type": "type",
"value": "[ <angle> | to <side-or-corner> ]? , <color-stop-list>"
},
{
"name": "<side-or-corner>",
Expand All @@ -177,7 +182,7 @@
"name": "radial-gradient()",
"prose": "The radial-gradient() notation specifies a radial gradient by indicating the center of the gradient (where the 0% ellipse will be) and the size and shape of the ending shape (the 100% ellipse). Color stops are given as a list, just as for linear-gradient(). Starting from the gradient center and progressing towards (and potentially beyond) the ending shape, uniformly-scaled concentric ellipses are drawn and colored according to the specified color stops.",
"type": "function",
"value": "radial-gradient( [ <rg-ending-shape> || <rg-size> ]? [ at <position> ]? , <color-stop-list> )",
"value": "radial-gradient( [ ] )",
"values": [
{
"name": "<position>",
Expand All @@ -199,6 +204,11 @@
}
]
},
{
"name": "<radial-gradient-syntax>",
"type": "type",
"value": "<rg-ending-shape> || <rg-size> ]? [ at <position> ]? , <color-stop-list>"
},
{
"name": "<rg-size>",
"type": "type",
Expand Down Expand Up @@ -296,6 +306,16 @@
}
]
},
{
"name": "<repeating-linear-gradient()>",
"type": "type",
"value": "repeating-linear-gradient( [ <linear-gradient-syntax> ] )"
},
{
"name": "<repeating-radial-gradient()>",
"type": "type",
"value": "repeating-radial-gradient( [ <radial-gradient-syntax> ] )"
},
{
"name": "<color-stop-list>",
"type": "type",
Expand Down
14 changes: 8 additions & 6 deletions ed/dfns/CSS22.json
Original file line number Diff line number Diff line change
Expand Up @@ -10413,9 +10413,10 @@
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css2/#title",
"title": "CSS 2"
"id": "cursor-props",
"href": "https://drafts.csswg.org/css2/#cursor-props",
"title": "Cursors: the cursor property",
"number": "18.1"
},
"definedIn": "dt"
},
Expand All @@ -10433,9 +10434,10 @@
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css2/#title",
"title": "CSS 2"
"id": "cursor-props",
"href": "https://drafts.csswg.org/css2/#cursor-props",
"title": "Cursors: the cursor property",
"number": "18.1"
},
"definedIn": "dt"
},
Expand Down
14 changes: 8 additions & 6 deletions ed/dfns/css-fonts-4.json
Original file line number Diff line number Diff line change
Expand Up @@ -2548,9 +2548,10 @@
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css-fonts-4/#title",
"title": "CSS Fonts Module Level 4"
"id": "font-variant-caps-prop",
"href": "https://drafts.csswg.org/css-fonts-4/#font-variant-caps-prop",
"title": "Capitalization: the font-variant-caps property",
"number": "6.6"
},
"definedIn": "dt"
},
Expand Down Expand Up @@ -4019,9 +4020,10 @@
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css-fonts-4/#title",
"title": "CSS Fonts Module Level 4"
"id": "font-variant-emoji-prop",
"href": "https://drafts.csswg.org/css-fonts-4/#font-variant-emoji-prop",
"title": "Selecting the text presentation style: The font-variant-emoji property",
"number": "9.3"
},
"definedIn": "dt"
},
Expand Down
78 changes: 75 additions & 3 deletions ed/dfns/css-images-3.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,24 @@
},
"definedIn": "prose"
},
{
"id": "typedef-linear-gradient-syntax",
"href": "https://drafts.csswg.org/css-images-3/#typedef-linear-gradient-syntax",
"linkingText": [
"<linear-gradient-syntax>"
],
"localLinkingText": [],
"type": "type",
"for": [],
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css-images-3/#title",
"title": "CSS Images Module Level 3"
},
"definedIn": "pre"
},
{
"id": "typedef-side-or-corner",
"href": "https://drafts.csswg.org/css-images-3/#typedef-side-or-corner",
Expand Down Expand Up @@ -283,10 +301,10 @@
"definedIn": "prose"
},
{
"id": "typedef-rg-size",
"href": "https://drafts.csswg.org/css-images-3/#typedef-rg-size",
"id": "typedef-radial-gradient-syntax",
"href": "https://drafts.csswg.org/css-images-3/#typedef-radial-gradient-syntax",
"linkingText": [
"<rg-size>"
"<radial-gradient-syntax>"
],
"localLinkingText": [],
"type": "type",
Expand All @@ -301,6 +319,24 @@
},
"definedIn": "pre"
},
{
"id": "typedef-rg-size",
"href": "https://drafts.csswg.org/css-images-3/#typedef-rg-size",
"linkingText": [
"<rg-size>"
],
"localLinkingText": [],
"type": "type",
"for": [],
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css-images-3/#title",
"title": "CSS Images Module Level 3"
},
"definedIn": "pre"
},
{
"id": "typedef-rg-extent-keyword",
"href": "https://drafts.csswg.org/css-images-3/#typedef-rg-extent-keyword",
Expand Down Expand Up @@ -609,6 +645,42 @@
},
"definedIn": "prose"
},
{
"id": "typedef-repeating-linear-gradient",
"href": "https://drafts.csswg.org/css-images-3/#typedef-repeating-linear-gradient",
"linkingText": [
"<repeating-linear-gradient()>"
],
"localLinkingText": [],
"type": "type",
"for": [],
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css-images-3/#title",
"title": "CSS Images Module Level 3"
},
"definedIn": "pre"
},
{
"id": "typedef-repeating-radial-gradient",
"href": "https://drafts.csswg.org/css-images-3/#typedef-repeating-radial-gradient",
"linkingText": [
"<repeating-radial-gradient()>"
],
"localLinkingText": [],
"type": "type",
"for": [],
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://drafts.csswg.org/css-images-3/#title",
"title": "CSS Images Module Level 3"
},
"definedIn": "pre"
},
{
"id": "gradient-average-color",
"href": "https://drafts.csswg.org/css-images-3/#gradient-average-color",
Expand Down
Loading

0 comments on commit fc7a112

Please sign in to comment.