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 12.1.3.
  • Loading branch information
reffy-bot committed Mar 30, 2023
1 parent 05e13e8 commit 49e92ca
Show file tree
Hide file tree
Showing 21 changed files with 1,544 additions and 1,288 deletions.
2 changes: 1 addition & 1 deletion tr/css/css-overflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
},
{
"name": "overflow",
"value": "<overflow-block>{1,2}",
"value": "<'overflow-block'>{1,2}",
"initial": "visible",
"appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], and grid containers [CSS3-GRID-LAYOUT]",
"inherited": "no",
Expand Down
66 changes: 31 additions & 35 deletions tr/css/css-text-4.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@
},
{
"name": "space",
"prose": "Instances of U+200B ZERO WIDTH SPACE within the text run children of this element are replaced by U+0020 SPACE.",
"prose": "Instances of U+200B ZERO WIDTH SPACE within the child text of this element are replaced by U+0020 SPACE.",
"type": "value",
"value": "space"
},
{
"name": "ideographic-space",
"prose": "Instances of U+200B ZERO WIDTH SPACE within the text run children of this element are replaced by U+3000 IDEOGRAPHIC SPACE.",
"prose": "Instances of U+200B ZERO WIDTH SPACE within the child text of this element are replaced by U+3000 IDEOGRAPHIC SPACE.",
"type": "value",
"value": "ideographic-space"
}
Expand All @@ -133,7 +133,7 @@
},
{
"name": "white-space",
"value": "normal | pre | nowrap | pre-wrap | break-spaces | pre-line",
"value": "normal | pre | nowrap | pre-wrap | pre-line | <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'>",
"initial": "normal",
"appliesTo": "text",
"inherited": "yes",
Expand All @@ -144,37 +144,21 @@
"values": [
{
"name": "normal",
"prose": "This value directs user agents to collapse sequences of white space into a single character (or in some cases, no character). Lines may wrap at allowed soft wrap opportunities, as determined by the line-breaking rules in effect, in order to minimize inline-axis overflow.",
"type": "value",
"value": "normal"
},
{
"name": "pre",
"prose": "This value prevents user agents from collapsing sequences of white space. Segment breaks such as line feeds are preserved as forced line breaks. Lines only break at forced line breaks; content that does not fit within the block container overflows it.",
"type": "value",
"value": "pre"
},
{
"name": "nowrap",
"prose": "Like normal, this value collapses white space; but like pre, it does not allow wrapping.",
"type": "value",
"value": "nowrap"
},
{
"name": "pre-wrap",
"prose": "Like pre, this value preserves white space; but like normal, it allows wrapping.",
"type": "value",
"value": "pre-wrap"
},
{
"name": "break-spaces",
"prose": "The behavior is identical to that of pre-wrap, except that: Any sequence of preserved white space or other space separators always takes up space, including at the end of the line. A line breaking opportunity exists after every preserved white space character and after every other space separator (including between adjacent spaces).",
"type": "value",
"value": "break-spaces"
},
{
"name": "pre-line",
"prose": "Like normal, this value collapses consecutive white space characters and allows wrapping, but it preserves segment breaks in the source as forced line breaks.",
"type": "value",
"value": "pre-line"
}
Expand All @@ -186,7 +170,7 @@
},
{
"name": "white-space-collapse",
"value": "collapse | discard | preserve | preserve-breaks | preserve-spaces",
"value": "collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces",
"initial": "collapse",
"appliesTo": "text",
"inherited": "yes",
Expand All @@ -203,25 +187,31 @@
},
{
"name": "preserve",
"prose": "This value prevents user agents from collapsing sequences of white space. Segment breaks are preserved as forced line breaks.",
"prose": "This value prevents user agents from collapsing sequences of white space. Segment breaks such as line feeds are preserved as forced line breaks.",
"type": "value",
"value": "preserve"
},
{
"name": "preserve-breaks",
"prose": "This value collapses white space as for collapse, but preserves segment breaks as forced line breaks.",
"prose": "Like collapse, this value collapses consecutive white space characters, but preserves segment breaks in the source as forced line breaks.",
"type": "value",
"value": "preserve-breaks"
},
{
"name": "preserve-spaces",
"prose": "This value prevents user agents from collapsing sequences of white space, and converts tabs and segment breaks to spaces. (This value is intended to match the behavior of xml:space=\"preserve\" in SVG.)",
"prose": "This value prevents user agents from collapsing sequences of white space, and converts tabs and segment breaks to spaces. (This value is intended to represent the behavior of xml:space=\"preserve\" in SVG.)",
"type": "value",
"value": "preserve-spaces"
},
{
"name": "break-spaces",
"prose": "The behavior is identical to that of preserve, except that: Any sequence of preserved white space or other space separators always takes up space, including at the end of the line. A soft wrap opportunity exists after every preserved white space character and after every other space separator (including between adjacent spaces).",
"type": "value",
"value": "break-spaces"
},
{
"name": "discard",
"prose": "This value directs user agents to “discard” all white space in the element. Does this preserve line break opportunities or no? Do we need a \"hide\" value?",
"prose": "This value directs user agents to “discard” all white space in the element. Does this preserve line break opportunities or no? Do we need a distinct \"hide\" value? If it preserves line break opportunities, maybe it should be replaced with a word-boundary-expansion value?",
"type": "value",
"value": "discard"
}
Expand All @@ -232,8 +222,8 @@
]
},
{
"name": "text-space-trim",
"value": "none | discard-inner || discard-before || discard-after",
"name": "white-space-trim",
"value": "none | discard-before || discard-after || discard-inner",
"initial": "none",
"appliesTo": "inline boxes and block containers",
"inherited": "no",
Expand All @@ -242,12 +232,6 @@
"canonicalOrder": "per grammar",
"animationType": "discrete",
"values": [
{
"name": "discard-inner",
"prose": "For block containers this value directs UAs to discard all whitespace at the beginning of the element up to and including the last segment break before the first non-white-space character in the element as well as to discard all white space at the end of the element starting with the first segment break after the last non-white-space character in the element. For other elements this value directs UAs to discard all whitespace at the beginning and end of the element.",
"type": "value",
"value": "discard-inner"
},
{
"name": "discard-before",
"prose": "This value directs the UA to collapse all collapsible whitespace immediately before the start of the element.",
Expand All @@ -259,11 +243,17 @@
"prose": "This value directs the UA to collapse all collapsible whitespace immediately after the end of the element.",
"type": "value",
"value": "discard-after"
},
{
"name": "discard-inner",
"prose": "For block containers this value directs UAs to discard all whitespace at the beginning of the element up to and including the last segment break before the first non-white-space character in the element as well as to discard all white space at the end of the element starting with the first segment break after the last non-white-space character in the element. For other elements this value directs UAs to discard all whitespace at the beginning and end of the element.",
"type": "value",
"value": "discard-inner"
}
],
"styleDeclaration": [
"text-space-trim",
"textSpaceTrim"
"white-space-trim",
"whiteSpaceTrim"
]
},
{
Expand Down Expand Up @@ -1065,7 +1055,7 @@
},
{
"name": "text-autospace",
"value": "normal | <autospace>",
"value": "normal | <autospace> | auto",
"initial": "normal",
"appliesTo": "text",
"inherited": "yes",
Expand Down Expand Up @@ -1115,6 +1105,12 @@
"prose": "Creates extra non-breaking spacing around punctuation as required by language-specific typographic conventions. In this level, if the element’s content language is French, narrow no-break space (U+202F) and no-break space (U+00A0) is inserted where required by French typographic guidelines. Otherwise this value has no effect. However future specifications may add automatic spacing behavior for other languages.",
"type": "value",
"value": "punctuation"
},
{
"name": "auto",
"prose": "The user agent chooses a set of typographically high quality spacing values. Different user agents running on different platforms may pick different values.",
"type": "value",
"value": "auto"
}
],
"styleDeclaration": [
Expand Down
128 changes: 2 additions & 126 deletions tr/dfns/compute-pressure.json
Original file line number Diff line number Diff line change
Expand Up @@ -520,86 +520,6 @@
},
"definedIn": "prose"
},
{
"id": "dfn-contributing-factors",
"href": "https://www.w3.org/TR/compute-pressure/#dfn-contributing-factors",
"linkingText": [
"Contributing factors"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"informative": false,
"heading": {
"id": "contributing-factors",
"href": "https://www.w3.org/TR/compute-pressure/#contributing-factors",
"title": "Contributing Factors",
"number": "9"
},
"definedIn": "prose"
},
{
"id": "dom-pressurefactor-thermal",
"href": "https://www.w3.org/TR/compute-pressure/#dom-pressurefactor-thermal",
"linkingText": [
"thermal"
],
"localLinkingText": [],
"type": "enum-value",
"for": [
"PressureFactor"
],
"access": "public",
"informative": false,
"heading": {
"id": "contributing-factors",
"href": "https://www.w3.org/TR/compute-pressure/#contributing-factors",
"title": "Contributing Factors",
"number": "9"
},
"definedIn": "pre"
},
{
"id": "dom-pressurefactor-power-supply",
"href": "https://www.w3.org/TR/compute-pressure/#dom-pressurefactor-power-supply",
"linkingText": [
"power-supply"
],
"localLinkingText": [],
"type": "enum-value",
"for": [
"PressureFactor"
],
"access": "public",
"informative": false,
"heading": {
"id": "contributing-factors",
"href": "https://www.w3.org/TR/compute-pressure/#contributing-factors",
"title": "Contributing Factors",
"number": "9"
},
"definedIn": "pre"
},
{
"id": "dom-pressurefactor",
"href": "https://www.w3.org/TR/compute-pressure/#dom-pressurefactor",
"linkingText": [
"PressureFactor"
],
"localLinkingText": [],
"type": "enum",
"for": [],
"access": "public",
"informative": false,
"heading": {
"id": "contributing-factors",
"href": "https://www.w3.org/TR/compute-pressure/#contributing-factors",
"title": "Contributing Factors",
"number": "9"
},
"definedIn": "prose"
},
{
"id": "dfn-change-in-contributing-factors-is-substantial",
"href": "https://www.w3.org/TR/compute-pressure/#dfn-change-in-contributing-factors-is-substantial",
Expand Down Expand Up @@ -870,27 +790,6 @@
},
"definedIn": "prose"
},
{
"id": "dfn-factors",
"href": "https://www.w3.org/TR/compute-pressure/#dfn-factors",
"linkingText": [
"[[Factors]]"
],
"localLinkingText": [],
"type": "attribute",
"for": [
"PressureRecord"
],
"access": "private",
"informative": false,
"heading": {
"id": "the-pressurerecord-interface",
"href": "https://www.w3.org/TR/compute-pressure/#the-pressurerecord-interface",
"title": "The PressureRecord interface",
"number": "10.3"
},
"definedIn": "prose"
},
{
"id": "dfn-time",
"href": "https://www.w3.org/TR/compute-pressure/#dfn-time",
Expand Down Expand Up @@ -958,29 +857,6 @@
},
"definedIn": "heading"
},
{
"id": "dom-pressurerecord-factors",
"href": "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-factors",
"linkingText": [
"factors"
],
"localLinkingText": [
"PressureRecord.factors"
],
"type": "attribute",
"for": [
"PressureRecord"
],
"access": "public",
"informative": false,
"heading": {
"id": "the-factors-attribute",
"href": "https://www.w3.org/TR/compute-pressure/#the-factors-attribute",
"title": "The factors attribute",
"number": "10.3.3"
},
"definedIn": "heading"
},
{
"id": "dom-pressurerecord-time",
"href": "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-time",
Expand All @@ -1000,7 +876,7 @@
"id": "the-time-attribute",
"href": "https://www.w3.org/TR/compute-pressure/#the-time-attribute",
"title": "The time attribute",
"number": "10.3.4"
"number": "10.3.3"
},
"definedIn": "heading"
},
Expand All @@ -1025,7 +901,7 @@
"id": "the-tojson-member",
"href": "https://www.w3.org/TR/compute-pressure/#the-tojson-member",
"title": "The toJSON member",
"number": "10.3.5"
"number": "10.3.4"
},
"definedIn": "heading"
},
Expand Down
12 changes: 6 additions & 6 deletions tr/dfns/css-overflow-3.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"access": "public",
"informative": false,
"heading": {
"id": "title",
Expand All @@ -217,7 +217,7 @@
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"access": "public",
"informative": false,
"heading": {
"id": "title",
Expand All @@ -235,7 +235,7 @@
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"access": "public",
"informative": false,
"heading": {
"id": "title",
Expand All @@ -253,7 +253,7 @@
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"access": "public",
"informative": false,
"heading": {
"id": "title",
Expand All @@ -271,7 +271,7 @@
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"access": "public",
"informative": false,
"heading": {
"id": "title",
Expand All @@ -289,7 +289,7 @@
"localLinkingText": [],
"type": "dfn",
"for": [],
"access": "private",
"access": "public",
"informative": false,
"heading": {
"id": "title",
Expand Down
Loading

0 comments on commit 49e92ca

Please sign in to comment.