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 14.8.2.
  • Loading branch information
reffy-bot committed Mar 13, 2024
1 parent 68a670a commit d857f87
Show file tree
Hide file tree
Showing 15 changed files with 1,782 additions and 1,559 deletions.
15 changes: 12 additions & 3 deletions tr/css/css-values.json
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@
},
{
"name": "<position>",
"prose": "The <position> value specifies the position of a object area (e.g. background image) inside a positioning area (e.g. background positioning area). It is interpreted as specified for background-position. [CSS3-BACKGROUND]",
"prose": "The <position> value specifies the position of a object area (e.g. background image) inside a positioning area (e.g. background positioning area). It is computed and interpreted as specified for background-position. [CSS3-BACKGROUND]",
"href": "https://www.w3.org/TR/css-values-4/#typedef-position",
"type": "type",
"value": "[ [ left | center | right | top | bottom | <length-percentage> ] | [ left | center | right ] && [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ] | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]"
Expand Down Expand Up @@ -606,11 +606,20 @@
"prose": "The clamp() function takes three calculations—​a minimum value, a central value, and a maximum value—​and represents its central calculation, clamped according to its min and max calculations, favoring the min calculation if it conflicts with the max. (That is, given clamp(MIN, VAL, MAX), it represents exactly the same value as max(MIN, min(VAL, MAX))).",
"href": "https://www.w3.org/TR/css-values-4/#funcdef-clamp",
"type": "function",
"value": "clamp( <calc-sum>#{3} )"
"value": "clamp( [ <calc-sum> | none ], <calc-sum>, [ <calc-sum> | none ] )",
"values": [
{
"name": "none",
"prose": "Either the min or max calculations (or even both) can instead be the keyword none, which indicates the value is not clamped from that side. (That is, clamp(MIN, VAL, none) is equivalent to max(MIN, VAL), clamp(none, VAL, MAX) is equivalent to min(VAL, MAX), and clamp(none, VAL, none) is equivalent to just calc(VAL).)",
"href": "https://www.w3.org/TR/css-values-4/#valdef-clamp-none",
"type": "value",
"value": "none"
}
]
},
{
"name": "round()",
"value": "round( <rounding-strategy>?, <calc-sum>, <calc-sum> )",
"value": "round( <rounding-strategy>?, <calc-sum>, <calc-sum>? )",
"href": "https://www.w3.org/TR/css-values-4/#funcdef-round",
"type": "function"
},
Expand Down
89 changes: 89 additions & 0 deletions tr/dfns/css-values-4.json
Original file line number Diff line number Diff line change
Expand Up @@ -2909,6 +2909,27 @@
},
"definedIn": "prose"
},
{
"id": "valdef-clamp-none",
"href": "https://www.w3.org/TR/css-values-4/#valdef-clamp-none",
"linkingText": [
"none"
],
"localLinkingText": [],
"type": "value",
"for": [
"clamp()"
],
"access": "public",
"informative": false,
"heading": {
"id": "comp-func",
"href": "https://www.w3.org/TR/css-values-4/#comp-func",
"title": "Comparison Functions: min(), max(), and clamp()",
"number": "10.2"
},
"definedIn": "prose"
},
{
"id": "funcdef-round",
"href": "https://www.w3.org/TR/css-values-4/#funcdef-round",
Expand Down Expand Up @@ -3554,6 +3575,74 @@
},
"definedIn": "prose"
},
{
"id": "css-contain-a-percentage",
"href": "https://www.w3.org/TR/css-values-4/#css-contain-a-percentage",
"linkingText": [
"contain a percentage",
"percentage-containing"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"CSS"
],
"access": "public",
"informative": false,
"heading": {
"id": "calc-type-checking",
"href": "https://www.w3.org/TR/css-values-4/#calc-type-checking",
"title": "Type Checking",
"number": "10.9"
},
"definedIn": "prose"
},
{
"id": "css-consistent-type",
"href": "https://www.w3.org/TR/css-values-4/#css-consistent-type",
"linkingText": [
"consistent type"
],
"localLinkingText": [
"consistent"
],
"type": "dfn",
"for": [
"CSS"
],
"access": "public",
"informative": false,
"heading": {
"id": "calc-type-checking",
"href": "https://www.w3.org/TR/css-values-4/#calc-type-checking",
"title": "Type Checking",
"number": "10.9"
},
"definedIn": "prose"
},
{
"id": "css-make-a-type-consistent",
"href": "https://www.w3.org/TR/css-values-4/#css-make-a-type-consistent",
"linkingText": [
"make a type consistent",
"make consistent",
"made consistent"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"CSS"
],
"access": "public",
"informative": false,
"heading": {
"id": "calc-type-checking",
"href": "https://www.w3.org/TR/css-values-4/#calc-type-checking",
"title": "Type Checking",
"number": "10.9"
},
"definedIn": "prose"
},
{
"id": "top-level-calculation",
"href": "https://www.w3.org/TR/css-values-4/#top-level-calculation",
Expand Down
4 changes: 2 additions & 2 deletions tr/dfns/device-posture.json
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@
"heading": {
"id": "dependencies",
"href": "https://www.w3.org/TR/device-posture/#dependencies",
"title": "11. Dependencies"
"title": "12. Dependencies"
},
"definedIn": "prose"
},
Expand All @@ -383,7 +383,7 @@
"heading": {
"id": "conformance",
"href": "https://www.w3.org/TR/device-posture/#conformance",
"title": "12. Conformance"
"title": "13. Conformance"
},
"definedIn": "prose"
}
Expand Down
189 changes: 163 additions & 26 deletions tr/dfns/webnn.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
},
"dfns": [
{
"id": "platform-operator",
"href": "https://www.w3.org/TR/webnn/#platform-operator",
"id": "computational-graph",
"href": "https://www.w3.org/TR/webnn/#computational-graph",
"linkingText": [
"platform operator"
"computational graph"
],
"localLinkingText": [],
"type": "dfn",
Expand All @@ -24,10 +24,167 @@
"definedIn": "prose"
},
{
"id": "platform-operand",
"href": "https://www.w3.org/TR/webnn/#platform-operand",
"id": "mlgraphbuilder-graph",
"href": "https://www.w3.org/TR/webnn/#mlgraphbuilder-graph",
"linkingText": [
"platform operand"
"graph"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"MLGraphBuilder"
],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "operators",
"href": "https://www.w3.org/TR/webnn/#operators",
"linkingText": [
"operators"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "computational-graph-input",
"href": "https://www.w3.org/TR/webnn/#computational-graph-input",
"linkingText": [
"input"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"computational graph"
],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "computational-graph-constants",
"href": "https://www.w3.org/TR/webnn/#computational-graph-constants",
"linkingText": [
"constants"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"computational graph"
],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "operator-input",
"href": "https://www.w3.org/TR/webnn/#operator-input",
"linkingText": [
"input"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"operator"
],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "operator-output",
"href": "https://www.w3.org/TR/webnn/#operator-output",
"linkingText": [
"output"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"operator"
],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "operator-activation",
"href": "https://www.w3.org/TR/webnn/#operator-activation",
"linkingText": [
"activation",
"activation function"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"operator"
],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "platform-operators",
"href": "https://www.w3.org/TR/webnn/#platform-operators",
"linkingText": [
"platform operators"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "prose"
},
{
"id": "platform-operands",
"href": "https://www.w3.org/TR/webnn/#platform-operands",
"linkingText": [
"platform operands"
],
"localLinkingText": [],
"type": "dfn",
Expand Down Expand Up @@ -1373,26 +1530,6 @@
},
"definedIn": "dt"
},
{
"id": "dom-mloperand-operand-slot",
"href": "https://www.w3.org/TR/webnn/#dom-mloperand-operand-slot",
"linkingText": [
"[[operand]]"
],
"localLinkingText": [],
"type": "attribute",
"for": [
"MLOperand"
],
"access": "public",
"informative": false,
"heading": {
"id": "title",
"href": "https://www.w3.org/TR/webnn/#title",
"title": "Web Neural Network API"
},
"definedIn": "dt"
},
{
"id": "dom-mloperand-operator-slot",
"href": "https://www.w3.org/TR/webnn/#dom-mloperand-operator-slot",
Expand Down
Loading

0 comments on commit d857f87

Please sign in to comment.