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 14.2.3.
  • Loading branch information
reffy-bot committed Nov 11, 2023
1 parent 232688e commit 7d4e76b
Show file tree
Hide file tree
Showing 22 changed files with 671 additions and 594 deletions.
6 changes: 3 additions & 3 deletions ed/css/css-backgrounds-4.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@
{
"name": "<bg-clip>",
"type": "type",
"value": "<box> | border | text",
"value": "<visual-box> | border | text",
"values": [
{
"name": "<box>",
"name": "<visual-box>",
"prose": "The background is painted within (clipped to) the specified box of the element.",
"type": "value",
"value": "<box>"
"value": "<visual-box>"
},
{
"name": "text",
Expand Down
187 changes: 103 additions & 84 deletions ed/css/css-box.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,36 +223,127 @@
"atrules": [],
"selectors": [],
"values": [
{
"name": "<box>",
"prose": "The following <box> CSS keywords are defined for use in properties (such as transform-box and background-clip) that need to refer to various box edges:",
"type": "type",
"values": [
{
"name": "content-box",
"prose": "Refers to the content box or content edge. (In an SVG context, treated as fill-box.)",
"type": "value",
"value": "content-box"
},
{
"name": "padding-box",
"prose": "Refers to the padding box or padding edge. (In an SVG context, treated as fill-box.)",
"type": "value",
"value": "padding-box"
},
{
"name": "border-box",
"prose": "Refers to the border box or border edge. (In an SVG context, treated as stroke-box.)",
"type": "value",
"value": "border-box"
},
{
"name": "margin-box",
"prose": "Refers to the margin box or margin edge. (In an SVG context, treated as stroke-box.)",
"type": "value",
"value": "margin-box"
},
{
"name": "fill-box",
"prose": "Refers to the object bounding box or its edges. (In a CSS box context, treated as content-box.)",
"type": "value",
"value": "fill-box"
},
{
"name": "stroke-box",
"prose": "Refers to the stroke bounding box or its edges. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "stroke-box"
},
{
"name": "view-box",
"prose": "Refers to the nearest SVG viewport’s origin box, which is a rectangle with the width and height of the SVG viewport, positioned such that its top left corner is anchored at the coordinate system origin. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "view-box"
}
]
},
{
"name": "<visual-box>",
"type": "type",
"value": "content-box | padding-box | border-box"
"value": "content-box | padding-box | border-box",
"values": [
{
"name": "content-box",
"prose": "Refers to the content box or content edge. (In an SVG context, treated as fill-box.)",
"type": "value",
"value": "content-box"
},
{
"name": "padding-box",
"prose": "Refers to the padding box or padding edge. (In an SVG context, treated as fill-box.)",
"type": "value",
"value": "padding-box"
},
{
"name": "border-box",
"prose": "Refers to the border box or border edge. (In an SVG context, treated as stroke-box.)",
"type": "value",
"value": "border-box"
}
]
},
{
"name": "<layout-box>",
"type": "type",
"value": "content-box | padding-box | border-box | margin-box"
"value": "<visual-box> | margin-box",
"values": [
{
"name": "margin-box",
"prose": "Refers to the margin box or margin edge. (In an SVG context, treated as stroke-box.)",
"type": "value",
"value": "margin-box"
}
]
},
{
"name": "<paint-box>",
"type": "type",
"value": "content-box | padding-box | border-box | fill-box | stroke-box"
"value": "<visual-box> | fill-box | stroke-box",
"values": [
{
"name": "fill-box",
"prose": "Refers to the object bounding box or its edges. (In a CSS box context, treated as content-box.)",
"type": "value",
"value": "fill-box"
},
{
"name": "stroke-box",
"prose": "Refers to the stroke bounding box or its edges. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "stroke-box"
}
]
},
{
"name": "<coord-box>",
"type": "type",
"value": "content-box | padding-box | border-box | fill-box | stroke-box | view-box"
"value": "<paint-box> | view-box",
"values": [
{
"name": "view-box",
"prose": "Refers to the nearest SVG viewport’s origin box, which is a rectangle with the width and height of the SVG viewport, positioned such that its top left corner is anchored at the coordinate system origin. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "view-box"
}
]
}
],
"warnings": [
{
"msg": "Dangling value",
"name": "content-box",
"prose": "Refers to the content box or content edge. (In an SVG context, treated as fill-box.)",
"type": "value",
"value": "content-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "content-box",
Expand All @@ -269,14 +360,6 @@
"value": "content-box",
"for": "<geometry-box>"
},
{
"msg": "Dangling value",
"name": "padding-box",
"prose": "Refers to the padding box or padding edge. (In an SVG context, treated as fill-box.)",
"type": "value",
"value": "padding-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "padding-box",
Expand All @@ -293,14 +376,6 @@
"value": "padding-box",
"for": "<geometry-box>"
},
{
"msg": "Dangling value",
"name": "border-box",
"prose": "Refers to the border box or border edge. (In an SVG context, treated as stroke-box.)",
"type": "value",
"value": "border-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "border-box",
Expand All @@ -317,14 +392,6 @@
"value": "border-box",
"for": "<geometry-box>"
},
{
"msg": "Dangling value",
"name": "margin-box",
"prose": "Refers to the margin box or margin edge. (In an SVG context, treated as stroke-box.)",
"type": "value",
"value": "margin-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "margin-box",
Expand All @@ -341,22 +408,6 @@
"value": "margin-box",
"for": "<geometry-box>"
},
{
"msg": "Dangling value",
"name": "fill-box",
"prose": "Refers to the object bounding box or its edges. (In a CSS box context, treated as content-box.)",
"type": "value",
"value": "fill-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "fill-box",
"prose": "Refers to the object bounding box or its edges. (In a CSS box context, treated as content-box.)",
"type": "value",
"value": "fill-box",
"for": "<shape-box>"
},
{
"msg": "Dangling value",
"name": "fill-box",
Expand All @@ -365,22 +416,6 @@
"value": "fill-box",
"for": "<geometry-box>"
},
{
"msg": "Dangling value",
"name": "stroke-box",
"prose": "Refers to the stroke bounding box or its edges. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "stroke-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "stroke-box",
"prose": "Refers to the stroke bounding box or its edges. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "stroke-box",
"for": "<shape-box>"
},
{
"msg": "Dangling value",
"name": "stroke-box",
Expand All @@ -389,22 +424,6 @@
"value": "stroke-box",
"for": "<geometry-box>"
},
{
"msg": "Dangling value",
"name": "view-box",
"prose": "Refers to the nearest SVG viewport’s origin box, which is a rectangle with the width and height of the SVG viewport, positioned such that its top left corner is anchored at the coordinate system origin. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "view-box",
"for": "<box>"
},
{
"msg": "Dangling value",
"name": "view-box",
"prose": "Refers to the nearest SVG viewport’s origin box, which is a rectangle with the width and height of the SVG viewport, positioned such that its top left corner is anchored at the coordinate system origin. (In a CSS box context, treated as border-box.)",
"type": "value",
"value": "view-box",
"for": "<shape-box>"
},
{
"msg": "Dangling value",
"name": "view-box",
Expand Down
2 changes: 1 addition & 1 deletion ed/css/css-shapes.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
{
"name": "<shape-box>",
"type": "type",
"value": "<box> | margin-box",
"value": "<visual-box> | margin-box",
"values": [
{
"name": "margin-box",
Expand Down
Loading

0 comments on commit 7d4e76b

Please sign in to comment.