diff --git a/tr/css/css-overflow.json b/tr/css/css-overflow.json index b9472ec7973e..f017ce2b1d4f 100644 --- a/tr/css/css-overflow.json +++ b/tr/css/css-overflow.json @@ -162,7 +162,7 @@ }, { "name": "overflow", - "value": "{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", diff --git a/tr/css/css-text-4.json b/tr/css/css-text-4.json index cea5effd86e6..6cdc7cf78202 100644 --- a/tr/css/css-text-4.json +++ b/tr/css/css-text-4.json @@ -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" } @@ -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", @@ -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" } @@ -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", @@ -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" } @@ -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", @@ -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.", @@ -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" ] }, { @@ -1065,7 +1055,7 @@ }, { "name": "text-autospace", - "value": "normal | ", + "value": "normal | | auto", "initial": "normal", "appliesTo": "text", "inherited": "yes", @@ -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": [ diff --git a/tr/dfns/compute-pressure.json b/tr/dfns/compute-pressure.json index d5c0d8f74656..745f0306219c 100644 --- a/tr/dfns/compute-pressure.json +++ b/tr/dfns/compute-pressure.json @@ -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", @@ -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", @@ -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", @@ -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" }, @@ -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" }, diff --git a/tr/dfns/css-overflow-3.json b/tr/dfns/css-overflow-3.json index d6fb955d06f2..c9f2e88fcadf 100644 --- a/tr/dfns/css-overflow-3.json +++ b/tr/dfns/css-overflow-3.json @@ -199,7 +199,7 @@ "localLinkingText": [], "type": "dfn", "for": [], - "access": "private", + "access": "public", "informative": false, "heading": { "id": "title", @@ -217,7 +217,7 @@ "localLinkingText": [], "type": "dfn", "for": [], - "access": "private", + "access": "public", "informative": false, "heading": { "id": "title", @@ -235,7 +235,7 @@ "localLinkingText": [], "type": "dfn", "for": [], - "access": "private", + "access": "public", "informative": false, "heading": { "id": "title", @@ -253,7 +253,7 @@ "localLinkingText": [], "type": "dfn", "for": [], - "access": "private", + "access": "public", "informative": false, "heading": { "id": "title", @@ -271,7 +271,7 @@ "localLinkingText": [], "type": "dfn", "for": [], - "access": "private", + "access": "public", "informative": false, "heading": { "id": "title", @@ -289,7 +289,7 @@ "localLinkingText": [], "type": "dfn", "for": [], - "access": "private", + "access": "public", "informative": false, "heading": { "id": "title", diff --git a/tr/dfns/css-text-4.json b/tr/dfns/css-text-4.json index a55c9c3a0536..4a2406fb56e7 100644 --- a/tr/dfns/css-text-4.json +++ b/tr/dfns/css-text-4.json @@ -37,10 +37,9 @@ "access": "public", "informative": false, "heading": { - "id": "languages", - "href": "https://www.w3.org/TR/css-text-4/#languages", - "title": "Languages and Typesetting", - "number": "1.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -76,10 +75,9 @@ "access": "public", "informative": false, "heading": { - "id": "characters", - "href": "https://www.w3.org/TR/css-text-4/#characters", - "title": "Characters and Letters", - "number": "1.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -95,10 +93,9 @@ "access": "private", "informative": false, "heading": { - "id": "characters", - "href": "https://www.w3.org/TR/css-text-4/#characters", - "title": "Characters and Letters", - "number": "1.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -114,10 +111,9 @@ "access": "public", "informative": false, "heading": { - "id": "characters", - "href": "https://www.w3.org/TR/css-text-4/#characters", - "title": "Characters and Letters", - "number": "1.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -133,10 +129,9 @@ "access": "private", "informative": false, "heading": { - "id": "characters", - "href": "https://www.w3.org/TR/css-text-4/#characters", - "title": "Characters and Letters", - "number": "1.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -215,10 +210,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-transform-property", - "href": "https://www.w3.org/TR/css-text-4/#text-transform-property", - "title": "Case Transforms: the text-transform property", - "number": "2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -236,10 +230,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-transform-property", - "href": "https://www.w3.org/TR/css-text-4/#text-transform-property", - "title": "Case Transforms: the text-transform property", - "number": "2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -257,10 +250,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-transform-property", - "href": "https://www.w3.org/TR/css-text-4/#text-transform-property", - "title": "Case Transforms: the text-transform property", - "number": "2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -278,10 +270,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-transform-property", - "href": "https://www.w3.org/TR/css-text-4/#text-transform-property", - "title": "Case Transforms: the text-transform property", - "number": "2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -316,10 +307,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-transform-mapping", - "href": "https://www.w3.org/TR/css-text-4/#text-transform-mapping", - "title": "Mapping Rules", - "number": "2.1.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -375,10 +365,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-boundary-detection", - "href": "https://www.w3.org/TR/css-text-4/#word-boundary-detection", - "title": "Detecting Word Boundaries: the word-boundary-detection property", - "number": "2.2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -396,10 +385,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-boundary-detection", - "href": "https://www.w3.org/TR/css-text-4/#word-boundary-detection", - "title": "Detecting Word Boundaries: the word-boundary-detection property", - "number": "2.2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -417,10 +405,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-boundary-detection", - "href": "https://www.w3.org/TR/css-text-4/#word-boundary-detection", - "title": "Detecting Word Boundaries: the word-boundary-detection property", - "number": "2.2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -438,10 +425,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-boundary-detection", - "href": "https://www.w3.org/TR/css-text-4/#word-boundary-detection", - "title": "Detecting Word Boundaries: the word-boundary-detection property", - "number": "2.2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -565,7 +551,7 @@ "title": "White Space and Wrapping: the white-space property", "number": "3" }, - "definedIn": "dt" + "definedIn": "table" }, { "id": "valdef-white-space-pre", @@ -581,33 +567,11 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-property", - "href": "https://www.w3.org/TR/css-text-4/#white-space-property", - "title": "White Space and Wrapping: the white-space property", - "number": "3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, - "definedIn": "dt" - }, - { - "id": "valdef-white-space-nowrap", - "href": "https://www.w3.org/TR/css-text-4/#valdef-white-space-nowrap", - "linkingText": [ - "nowrap" - ], - "localLinkingText": [], - "type": "value", - "for": [ - "white-space" - ], - "access": "public", - "informative": false, - "heading": { - "id": "white-space-property", - "href": "https://www.w3.org/TR/css-text-4/#white-space-property", - "title": "White Space and Wrapping: the white-space property", - "number": "3" - }, - "definedIn": "dt" + "definedIn": "table" }, { "id": "valdef-white-space-pre-wrap", @@ -623,33 +587,11 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-property", - "href": "https://www.w3.org/TR/css-text-4/#white-space-property", - "title": "White Space and Wrapping: the white-space property", - "number": "3" - }, - "definedIn": "dt" - }, - { - "id": "valdef-white-space-break-spaces", - "href": "https://www.w3.org/TR/css-text-4/#valdef-white-space-break-spaces", - "linkingText": [ - "break-spaces" - ], - "localLinkingText": [], - "type": "value", - "for": [ - "white-space" - ], - "access": "public", - "informative": false, - "heading": { - "id": "white-space-property", - "href": "https://www.w3.org/TR/css-text-4/#white-space-property", - "title": "White Space and Wrapping: the white-space property", - "number": "3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, - "definedIn": "dt" + "definedIn": "table" }, { "id": "valdef-white-space-pre-line", @@ -665,33 +607,11 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-property", - "href": "https://www.w3.org/TR/css-text-4/#white-space-property", - "title": "White Space and Wrapping: the white-space property", - "number": "3" - }, - "definedIn": "dt" - }, - { - "id": "preserved-white-space", - "href": "https://www.w3.org/TR/css-text-4/#preserved-white-space", - "linkingText": [ - "preserved white space" - ], - "localLinkingText": [ - "preserved" - ], - "type": "dfn", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "white-space-property", - "href": "https://www.w3.org/TR/css-text-4/#white-space-property", - "title": "White Space and Wrapping: the white-space property", - "number": "3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, - "definedIn": "prose" + "definedIn": "table" }, { "id": "segment-break", @@ -766,10 +686,9 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-collapsing", - "href": "https://www.w3.org/TR/css-text-4/#white-space-collapsing", - "title": "White Space Collapsing: the white-space-collapse property", - "number": "4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -787,10 +706,9 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-collapsing", - "href": "https://www.w3.org/TR/css-text-4/#white-space-collapsing", - "title": "White Space Collapsing: the white-space-collapse property", - "number": "4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -808,10 +726,29 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-collapsing", - "href": "https://www.w3.org/TR/css-text-4/#white-space-collapsing", - "title": "White Space Collapsing: the white-space-collapse property", - "number": "4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" + }, + "definedIn": "dt" + }, + { + "id": "valdef-white-space-collapse-break-spaces", + "href": "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-break-spaces", + "linkingText": [ + "break-spaces" + ], + "localLinkingText": [], + "type": "value", + "for": [ + "white-space-collapse" + ], + "access": "public", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -829,18 +766,37 @@ "access": "public", "informative": false, "heading": { - "id": "white-space-collapsing", - "href": "https://www.w3.org/TR/css-text-4/#white-space-collapsing", - "title": "White Space Collapsing: the white-space-collapse property", - "number": "4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, { - "id": "propdef-text-space-trim", - "href": "https://www.w3.org/TR/css-text-4/#propdef-text-space-trim", + "id": "preserved-white-space", + "href": "https://www.w3.org/TR/css-text-4/#preserved-white-space", "linkingText": [ - "text-space-trim" + "preserved white space" + ], + "localLinkingText": [ + "preserved" + ], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" + }, + "definedIn": "prose" + }, + { + "id": "propdef-white-space-trim", + "href": "https://www.w3.org/TR/css-text-4/#propdef-white-space-trim", + "linkingText": [ + "white-space-trim" ], "localLinkingText": [], "type": "property", @@ -850,70 +806,70 @@ "heading": { "id": "white-space-trim", "href": "https://www.w3.org/TR/css-text-4/#white-space-trim", - "title": "White Space Trimming: the text-space-trim property", + "title": "White Space Trimming: the white-space-trim property", "number": "4.2" }, "definedIn": "table" }, { - "id": "valdef-text-space-trim-discard-inner", - "href": "https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-inner", + "id": "valdef-white-space-trim-discard-before", + "href": "https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-before", "linkingText": [ - "discard-inner" + "discard-before" ], "localLinkingText": [], "type": "value", "for": [ - "text-space-trim" + "white-space-trim" ], "access": "public", "informative": false, "heading": { "id": "white-space-trim", "href": "https://www.w3.org/TR/css-text-4/#white-space-trim", - "title": "White Space Trimming: the text-space-trim property", + "title": "White Space Trimming: the white-space-trim property", "number": "4.2" }, "definedIn": "dt" }, { - "id": "valdef-text-space-trim-discard-before", - "href": "https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-before", + "id": "valdef-white-space-trim-discard-after", + "href": "https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-after", "linkingText": [ - "discard-before" + "discard-after" ], "localLinkingText": [], "type": "value", "for": [ - "text-space-trim" + "white-space-trim" ], "access": "public", "informative": false, "heading": { "id": "white-space-trim", "href": "https://www.w3.org/TR/css-text-4/#white-space-trim", - "title": "White Space Trimming: the text-space-trim property", + "title": "White Space Trimming: the white-space-trim property", "number": "4.2" }, "definedIn": "dt" }, { - "id": "valdef-text-space-trim-discard-after", - "href": "https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-after", + "id": "valdef-white-space-trim-discard-inner", + "href": "https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-inner", "linkingText": [ - "discard-after" + "discard-inner" ], "localLinkingText": [], "type": "value", "for": [ - "text-space-trim" + "white-space-trim" ], "access": "public", "informative": false, "heading": { "id": "white-space-trim", "href": "https://www.w3.org/TR/css-text-4/#white-space-trim", - "title": "White Space Trimming: the text-space-trim property", + "title": "White Space Trimming: the white-space-trim property", "number": "4.2" }, "definedIn": "dt" @@ -952,10 +908,9 @@ "access": "private", "informative": false, "heading": { - "id": "white-space-rules", - "href": "https://www.w3.org/TR/css-text-4/#white-space-rules", - "title": "The White Space Processing Rules", - "number": "4.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -971,10 +926,9 @@ "access": "private", "informative": false, "heading": { - "id": "white-space-rules", - "href": "https://www.w3.org/TR/css-text-4/#white-space-rules", - "title": "The White Space Processing Rules", - "number": "4.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -990,10 +944,9 @@ "access": "private", "informative": false, "heading": { - "id": "white-space-rules", - "href": "https://www.w3.org/TR/css-text-4/#white-space-rules", - "title": "The White Space Processing Rules", - "number": "4.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1125,10 +1078,9 @@ "access": "public", "informative": false, "heading": { - "id": "line-breaking", - "href": "https://www.w3.org/TR/css-text-4/#line-breaking", - "title": "Line Breaking and Word Boundaries", - "number": "5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1145,10 +1097,9 @@ "access": "private", "informative": false, "heading": { - "id": "line-breaking", - "href": "https://www.w3.org/TR/css-text-4/#line-breaking", - "title": "Line Breaking and Word Boundaries", - "number": "5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1164,10 +1115,9 @@ "access": "private", "informative": false, "heading": { - "id": "line-breaking", - "href": "https://www.w3.org/TR/css-text-4/#line-breaking", - "title": "Line Breaking and Word Boundaries", - "number": "5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1184,10 +1134,9 @@ "access": "public", "informative": false, "heading": { - "id": "line-breaking", - "href": "https://www.w3.org/TR/css-text-4/#line-breaking", - "title": "Line Breaking and Word Boundaries", - "number": "5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1203,10 +1152,9 @@ "access": "public", "informative": false, "heading": { - "id": "line-breaking", - "href": "https://www.w3.org/TR/css-text-4/#line-breaking", - "title": "Line Breaking and Word Boundaries", - "number": "5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1264,10 +1212,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-break-property", - "href": "https://www.w3.org/TR/css-text-4/#word-break-property", - "title": "Breaking Rules for Letters: the word-break property", - "number": "5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1285,10 +1232,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-break-property", - "href": "https://www.w3.org/TR/css-text-4/#word-break-property", - "title": "Breaking Rules for Letters: the word-break property", - "number": "5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1306,10 +1252,9 @@ "access": "public", "informative": false, "heading": { - "id": "word-break-property", - "href": "https://www.w3.org/TR/css-text-4/#word-break-property", - "title": "Breaking Rules for Letters: the word-break property", - "number": "5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1388,10 +1333,9 @@ "access": "public", "informative": false, "heading": { - "id": "line-break-property", - "href": "https://www.w3.org/TR/css-text-4/#line-break-property", - "title": "Line Breaking Strictness: the line-break property", - "number": "5.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1409,10 +1353,9 @@ "access": "public", "informative": false, "heading": { - "id": "line-break-property", - "href": "https://www.w3.org/TR/css-text-4/#line-break-property", - "title": "Line Breaking Strictness: the line-break property", - "number": "5.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1430,10 +1373,9 @@ "access": "public", "informative": false, "heading": { - "id": "line-break-property", - "href": "https://www.w3.org/TR/css-text-4/#line-break-property", - "title": "Line Breaking Strictness: the line-break property", - "number": "5.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1469,10 +1411,9 @@ "access": "private", "informative": false, "heading": { - "id": "hyphens-property", - "href": "https://www.w3.org/TR/css-text-4/#hyphens-property", - "title": "Hyphenation Control: the hyphens property", - "number": "5.4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -1488,10 +1429,9 @@ "access": "public", "informative": false, "heading": { - "id": "hyphens-property", - "href": "https://www.w3.org/TR/css-text-4/#hyphens-property", - "title": "Hyphenation Control: the hyphens property", - "number": "5.4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "table" }, @@ -1509,10 +1449,9 @@ "access": "public", "informative": false, "heading": { - "id": "hyphens-property", - "href": "https://www.w3.org/TR/css-text-4/#hyphens-property", - "title": "Hyphenation Control: the hyphens property", - "number": "5.4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1530,10 +1469,9 @@ "access": "public", "informative": false, "heading": { - "id": "hyphens-property", - "href": "https://www.w3.org/TR/css-text-4/#hyphens-property", - "title": "Hyphenation Control: the hyphens property", - "number": "5.4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1551,10 +1489,9 @@ "access": "public", "informative": false, "heading": { - "id": "hyphens-property", - "href": "https://www.w3.org/TR/css-text-4/#hyphens-property", - "title": "Hyphenation Control: the hyphens property", - "number": "5.4.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1894,10 +1831,9 @@ "access": "public", "informative": false, "heading": { - "id": "overflow-wrap-property", - "href": "https://www.w3.org/TR/css-text-4/#overflow-wrap-property", - "title": "Overflow Wrapping: the overflow-wrap/word-wrap property", - "number": "5.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1955,10 +1891,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-wrap", - "href": "https://www.w3.org/TR/css-text-4/#text-wrap", - "title": "Text Wrap Settings: the text-wrap property", - "number": "6.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1976,10 +1911,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-wrap", - "href": "https://www.w3.org/TR/css-text-4/#text-wrap", - "title": "Text Wrap Settings: the text-wrap property", - "number": "6.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -1997,10 +1931,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-wrap", - "href": "https://www.w3.org/TR/css-text-4/#text-wrap", - "title": "Text Wrap Settings: the text-wrap property", - "number": "6.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2018,10 +1951,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-wrap", - "href": "https://www.w3.org/TR/css-text-4/#text-wrap", - "title": "Text Wrap Settings: the text-wrap property", - "number": "6.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2099,11 +2031,10 @@ ], "access": "public", "informative": false, - "heading": { - "id": "wrap-before", - "href": "https://www.w3.org/TR/css-text-4/#wrap-before", - "title": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", - "number": "6.2" + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2122,10 +2053,9 @@ "access": "public", "informative": false, "heading": { - "id": "wrap-before", - "href": "https://www.w3.org/TR/css-text-4/#wrap-before", - "title": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", - "number": "6.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2144,10 +2074,9 @@ "access": "public", "informative": false, "heading": { - "id": "wrap-before", - "href": "https://www.w3.org/TR/css-text-4/#wrap-before", - "title": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", - "number": "6.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2166,10 +2095,9 @@ "access": "public", "informative": false, "heading": { - "id": "wrap-before", - "href": "https://www.w3.org/TR/css-text-4/#wrap-before", - "title": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", - "number": "6.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2188,10 +2116,9 @@ "access": "public", "informative": false, "heading": { - "id": "wrap-before", - "href": "https://www.w3.org/TR/css-text-4/#wrap-before", - "title": "Controlling Breaks Between Boxes: the wrap-before/wrap-after properties", - "number": "6.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2249,10 +2176,9 @@ "access": "public", "informative": false, "heading": { - "id": "wrap-inside", - "href": "https://www.w3.org/TR/css-text-4/#wrap-inside", - "title": "Controlling Breaks Within Boxes: the wrap-inside property", - "number": "6.3" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2310,10 +2236,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2331,10 +2256,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2352,10 +2276,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2373,10 +2296,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2394,10 +2316,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -2415,10 +2336,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2436,10 +2356,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2457,10 +2376,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-align-property", - "title": "Text Alignment: the text-align shorthand", - "number": "7.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2577,10 +2495,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-justify-property", - "href": "https://www.w3.org/TR/css-text-4/#text-justify-property", - "title": "Justification Method: the text-justify property", - "number": "7.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2598,10 +2515,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-justify-property", - "href": "https://www.w3.org/TR/css-text-4/#text-justify-property", - "title": "Justification Method: the text-justify property", - "number": "7.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2619,10 +2535,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-justify-property", - "href": "https://www.w3.org/TR/css-text-4/#text-justify-property", - "title": "Justification Method: the text-justify property", - "number": "7.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2640,10 +2555,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-justify-property", - "href": "https://www.w3.org/TR/css-text-4/#text-justify-property", - "title": "Justification Method: the text-justify property", - "number": "7.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -2661,10 +2575,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-justify-property", - "href": "https://www.w3.org/TR/css-text-4/#text-justify-property", - "title": "Justification Method: the text-justify property", - "number": "7.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2682,10 +2595,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-justify-property", - "href": "https://www.w3.org/TR/css-text-4/#text-justify-property", - "title": "Justification Method: the text-justify property", - "number": "7.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2762,10 +2674,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-group-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-group-align-property", - "title": "Aligning a block of text within its container: the text-group-align property", - "number": "7.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2783,10 +2694,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-group-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-group-align-property", - "title": "Aligning a block of text within its container: the text-group-align property", - "number": "7.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2804,10 +2714,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-group-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-group-align-property", - "title": "Aligning a block of text within its container: the text-group-align property", - "number": "7.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2825,10 +2734,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-group-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-group-align-property", - "title": "Aligning a block of text within its container: the text-group-align property", - "number": "7.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2846,10 +2754,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-group-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-group-align-property", - "title": "Aligning a block of text within its container: the text-group-align property", - "number": "7.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -2867,10 +2774,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-group-align-property", - "href": "https://www.w3.org/TR/css-text-4/#text-group-align-property", - "title": "Aligning a block of text within its container: the text-group-align property", - "number": "7.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3028,10 +2934,9 @@ "access": "public", "informative": false, "heading": { - "id": "letter-spacing-property", - "href": "https://www.w3.org/TR/css-text-4/#letter-spacing-property", - "title": "Tracking: the letter-spacing property", - "number": "8.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3106,10 +3011,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3127,10 +3031,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3148,10 +3051,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3169,10 +3071,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3190,10 +3091,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3211,10 +3111,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3232,10 +3131,29 @@ "access": "public", "informative": false, "heading": { - "id": "text-autospace-property", - "href": "https://www.w3.org/TR/css-text-4/#text-autospace-property", - "title": "Automatic Contextual Spacing: the text-autospace property", - "number": "8.4" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" + }, + "definedIn": "dt" + }, + { + "id": "valdef-text-autospace-auto", + "href": "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-auto", + "linkingText": [ + "auto" + ], + "localLinkingText": [], + "type": "value", + "for": [ + "text-autospace" + ], + "access": "public", + "informative": false, + "heading": { + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3291,10 +3209,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-trim-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property", - "title": "CJK Punctuation Spacing: the text-spacing-trim property", - "number": "8.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3312,10 +3229,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-trim-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property", - "title": "CJK Punctuation Spacing: the text-spacing-trim property", - "number": "8.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3333,10 +3249,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-trim-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property", - "title": "CJK Punctuation Spacing: the text-spacing-trim property", - "number": "8.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3354,10 +3269,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-trim-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property", - "title": "CJK Punctuation Spacing: the text-spacing-trim property", - "number": "8.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3375,10 +3289,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-trim-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property", - "title": "CJK Punctuation Spacing: the text-spacing-trim property", - "number": "8.5" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3413,10 +3326,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3432,10 +3344,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3451,10 +3362,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3470,10 +3380,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3489,10 +3398,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3508,10 +3416,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3527,10 +3434,9 @@ "access": "private", "informative": false, "heading": { - "id": "text-spacing-classes", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-classes", - "title": "Text Spacing Character Classes", - "number": "8.5.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3588,10 +3494,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-property", - "title": "Character Class Spacing Shorthand: the text-spacing property", - "number": "8.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3609,10 +3514,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-property", - "title": "Character Class Spacing Shorthand: the text-spacing property", - "number": "8.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3630,10 +3534,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-property", - "title": "Character Class Spacing Shorthand: the text-spacing property", - "number": "8.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3651,10 +3554,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-spacing-property", - "href": "https://www.w3.org/TR/css-text-4/#text-spacing-property", - "title": "Character Class Spacing Shorthand: the text-spacing property", - "number": "8.6" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3754,10 +3656,9 @@ "access": "public", "informative": false, "heading": { - "id": "text-indent-property", - "href": "https://www.w3.org/TR/css-text-4/#text-indent-property", - "title": "First Line Indentation: the text-indent property", - "number": "9.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3792,10 +3693,9 @@ "access": "private", "informative": false, "heading": { - "id": "hanging", - "href": "https://www.w3.org/TR/css-text-4/#hanging", - "title": "Hanging Glyphs", - "number": "9.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -3811,10 +3711,9 @@ "access": "private", "informative": false, "heading": { - "id": "hanging", - "href": "https://www.w3.org/TR/css-text-4/#hanging", - "title": "Hanging Glyphs", - "number": "9.2" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -3935,10 +3834,9 @@ "access": "public", "informative": false, "heading": { - "id": "hanging-punctuation-property", - "href": "https://www.w3.org/TR/css-text-4/#hanging-punctuation-property", - "title": "Hanging Punctuation: the hanging-punctuation property", - "number": "9.2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -3954,10 +3852,9 @@ "access": "private", "informative": false, "heading": { - "id": "hanging-punctuation-property", - "href": "https://www.w3.org/TR/css-text-4/#hanging-punctuation-property", - "title": "Hanging Punctuation: the hanging-punctuation property", - "number": "9.2.1" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -3992,10 +3889,9 @@ "access": "private", "informative": false, "heading": { - "id": "script-groups", - "href": "https://www.w3.org/TR/css-text-4/#script-groups", - "title": "Scripts and Spacing", - "number": "D" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -4011,10 +3907,9 @@ "access": "private", "informative": false, "heading": { - "id": "script-groups", - "href": "https://www.w3.org/TR/css-text-4/#script-groups", - "title": "Scripts and Spacing", - "number": "D" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "dt" }, @@ -4053,10 +3948,9 @@ "access": "private", "informative": false, "heading": { - "id": "script-tagging", - "href": "https://www.w3.org/TR/css-text-4/#script-tagging", - "title": "Identifying the Content Writing System", - "number": "F" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -4074,10 +3968,9 @@ "access": "private", "informative": false, "heading": { - "id": "script-tagging", - "href": "https://www.w3.org/TR/css-text-4/#script-tagging", - "title": "Identifying the Content Writing System", - "number": "F" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -4096,10 +3989,9 @@ "access": "private", "informative": false, "heading": { - "id": "script-tagging", - "href": "https://www.w3.org/TR/css-text-4/#script-tagging", - "title": "Identifying the Content Writing System", - "number": "F" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "prose" }, @@ -4140,10 +4032,9 @@ "access": "private", "informative": false, "heading": { - "id": "small-kana", - "href": "https://www.w3.org/TR/css-text-4/#small-kana", - "title": "Small Kana Mappings", - "number": "G" + "id": "title", + "href": "https://www.w3.org/TR/css-text-4/#title", + "title": "CSS Text Module Level 4" }, "definedIn": "table" } diff --git a/tr/headings/appmanifest.json b/tr/headings/appmanifest.json index b895093a4480..b7659846af07 100644 --- a/tr/headings/appmanifest.json +++ b/tr/headings/appmanifest.json @@ -507,8 +507,8 @@ "number": "B.1.1" }, { - "id": "incubations", - "href": "https://www.w3.org/TR/appmanifest/#incubations", + "id": "incubations-0", + "href": "https://www.w3.org/TR/appmanifest/#incubations-0", "level": 2, "title": "Incubations", "number": "C" diff --git a/tr/headings/compute-pressure.json b/tr/headings/compute-pressure.json index 76f6ea3e3e1f..3a0be4468364 100644 --- a/tr/headings/compute-pressure.json +++ b/tr/headings/compute-pressure.json @@ -183,26 +183,19 @@ "title": "The state attribute", "number": "10.3.2" }, - { - "id": "the-factors-attribute", - "href": "https://www.w3.org/TR/compute-pressure/#the-factors-attribute", - "level": 4, - "title": "The factors attribute", - "number": "10.3.3" - }, { "id": "the-time-attribute", "href": "https://www.w3.org/TR/compute-pressure/#the-time-attribute", "level": 4, "title": "The time attribute", - "number": "10.3.4" + "number": "10.3.3" }, { "id": "the-tojson-member", "href": "https://www.w3.org/TR/compute-pressure/#the-tojson-member", "level": 4, "title": "The toJSON member", - "number": "10.3.5" + "number": "10.3.4" }, { "id": "the-pressureobserveroptions-dictionary", diff --git a/tr/headings/css-text-4.json b/tr/headings/css-text-4.json index 8773ca190932..6359af86f354 100644 --- a/tr/headings/css-text-4.json +++ b/tr/headings/css-text-4.json @@ -144,7 +144,7 @@ "id": "white-space-trim", "href": "https://www.w3.org/TR/css-text-4/#white-space-trim", "level": 3, - "title": "White Space Trimming: the text-space-trim property", + "title": "White Space Trimming: the white-space-trim property", "number": "4.2" }, { diff --git a/tr/idl/compute-pressure.idl b/tr/idl/compute-pressure.idl index 1227ef8f13ca..40351c309fed 100644 --- a/tr/idl/compute-pressure.idl +++ b/tr/idl/compute-pressure.idl @@ -7,8 +7,6 @@ enum PressureSource { "thermals", "cpu" }; enum PressureState { "nominal", "fair", "serious", "critical" }; -enum PressureFactor { "thermal", "power-supply" }; - callback PressureUpdateCallback = undefined ( sequence changes, PressureObserver observer @@ -30,7 +28,6 @@ interface PressureObserver { interface PressureRecord { readonly attribute PressureSource source; readonly attribute PressureState state; - readonly attribute FrozenArray factors; readonly attribute DOMHighResTimeStamp time; [Default] object toJSON(); }; diff --git a/tr/ids/appmanifest.json b/tr/ids/appmanifest.json index 6811691a0968..207cf15ce61c 100644 --- a/tr/ids/appmanifest.json +++ b/tr/ids/appmanifest.json @@ -949,9 +949,11 @@ "https://www.w3.org/TR/appmanifest/#ref-for-dfn-processing-a-manifest-9", "https://www.w3.org/TR/appmanifest/#proprietary-extensions", "https://www.w3.org/TR/appmanifest/#b-1-1-proprietary-manifest-members", - "https://www.w3.org/TR/appmanifest/#example-vendor-extensions", + "https://www.w3.org/TR/appmanifest/#example-proprietary-extensions", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-33", + "https://www.w3.org/TR/appmanifest/#h-note-32", + "https://www.w3.org/TR/appmanifest/#incubations-0", "https://www.w3.org/TR/appmanifest/#incubations", - "https://www.w3.org/TR/appmanifest/#c-incubations", "https://www.w3.org/TR/appmanifest/#application-information", "https://www.w3.org/TR/appmanifest/#d-application-information", "https://www.w3.org/TR/appmanifest/#ref-for-index-term-web-app-manifest-application-information-1", @@ -960,8 +962,8 @@ "https://www.w3.org/TR/appmanifest/#json-schema", "https://www.w3.org/TR/appmanifest/#f-json-schema", "https://www.w3.org/TR/appmanifest/#ref-for-dfn-manifest-26", - "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-33", - "https://www.w3.org/TR/appmanifest/#h-note-32", + "https://www.w3.org/TR/appmanifest/#issue-container-generatedID-34", + "https://www.w3.org/TR/appmanifest/#h-note-33", "https://www.w3.org/TR/appmanifest/#internationalization", "https://www.w3.org/TR/appmanifest/#g-internationalization", "https://www.w3.org/TR/appmanifest/#use-cases-and-requirements", diff --git a/tr/ids/compute-pressure.json b/tr/ids/compute-pressure.json index e0ba00cd8382..59bdceed673c 100644 --- a/tr/ids/compute-pressure.json +++ b/tr/ids/compute-pressure.json @@ -152,32 +152,15 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurestate-critical-1", "https://www.w3.org/TR/compute-pressure/#contributing-factors", "https://www.w3.org/TR/compute-pressure/#x9-contributing-factors", - "https://www.w3.org/TR/compute-pressure/#dfn-contributing-factors", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-current-pressure-state-1", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-2", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-3", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-factors-1", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-3", - "https://www.w3.org/TR/compute-pressure/#h-note-3", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-user-agent-13", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-3", - "https://www.w3.org/TR/compute-pressure/#webidl-1211462662", - "https://www.w3.org/TR/compute-pressure/#idl-def-pressurefactor", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-1", - "https://www.w3.org/TR/compute-pressure/#dom-pressurefactor-thermal", - "https://www.w3.org/TR/compute-pressure/#dom-pressurefactor-power-supply", - "https://www.w3.org/TR/compute-pressure/#dom-pressurefactor", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-contributing-factors-1", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-thermal-1", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-power-supply-1", "https://www.w3.org/TR/compute-pressure/#dfn-change-in-contributing-factors-is-substantial", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-current-pressure-state-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-current-pressure-state-3", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-4", - "https://www.w3.org/TR/compute-pressure/#h-note-4", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-3", + "https://www.w3.org/TR/compute-pressure/#h-note-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-change-in-contributing-factors-is-substantial-1", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-4", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-contributing-factors-2", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-user-agent-13", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-2", "https://www.w3.org/TR/compute-pressure/#pressure-observer", "https://www.w3.org/TR/compute-pressure/#x10-pressure-observer", "https://www.w3.org/TR/compute-pressure/#the-pressureupdatecallback-callback", @@ -186,14 +169,14 @@ "https://www.w3.org/TR/compute-pressure/#webidl-1258957896", "https://www.w3.org/TR/compute-pressure/#idl-def-pressureupdatecallback", "https://www.w3.org/TR/compute-pressure/#dom-pressureupdatecallback", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-4", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-6", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-5", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-3", "https://www.w3.org/TR/compute-pressure/#the-pressureobserver-object", "https://www.w3.org/TR/compute-pressure/#x10-2-the-pressureobserver-object", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-7", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-8", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-6", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-4", "https://www.w3.org/TR/compute-pressure/#webidl-633922516", "https://www.w3.org/TR/compute-pressure/#idl-def-pressureobserver", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-9", @@ -210,7 +193,7 @@ "https://www.w3.org/TR/compute-pressure/#idl-def-pressureobserver-disconnect", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-disconnect-1", "https://www.w3.org/TR/compute-pressure/#idl-def-pressureobserver-takerecords", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-5", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-4", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-takerecords-1", "https://www.w3.org/TR/compute-pressure/#idl-def-pressureobserver-supportedsources", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-9", @@ -269,8 +252,8 @@ "https://www.w3.org/TR/compute-pressure/#the-takerecords-method", "https://www.w3.org/TR/compute-pressure/#x10-2-5-the-takerecords-method", "https://www.w3.org/TR/compute-pressure/#dom-pressureobserver-takerecords", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-5", - "https://www.w3.org/TR/compute-pressure/#h-note-5", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-4", + "https://www.w3.org/TR/compute-pressure/#h-note-4", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-takerecords-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-queuedrecords-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-queuedrecords-4", @@ -282,38 +265,32 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-14", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-supportedsources-4", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-types-8", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-6", - "https://www.w3.org/TR/compute-pressure/#h-note-6", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-5", + "https://www.w3.org/TR/compute-pressure/#h-note-5", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-types-9", "https://www.w3.org/TR/compute-pressure/#the-pressurerecord-interface", "https://www.w3.org/TR/compute-pressure/#x10-3-the-pressurerecord-interface", "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord", - "https://www.w3.org/TR/compute-pressure/#webidl-1385227407", + "https://www.w3.org/TR/compute-pressure/#webidl-737850499", "https://www.w3.org/TR/compute-pressure/#idl-def-pressurerecord", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-6", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-5", "https://www.w3.org/TR/compute-pressure/#idl-def-pressurerecord-source", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-10", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-source-1", "https://www.w3.org/TR/compute-pressure/#idl-def-pressurerecord-state", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurestate-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-state-1", - "https://www.w3.org/TR/compute-pressure/#idl-def-pressurerecord-factors", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-2", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-factors-1", "https://www.w3.org/TR/compute-pressure/#idl-def-pressurerecord-time", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-time-1", "https://www.w3.org/TR/compute-pressure/#idl-def-pressurerecord-tojson", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-tojson-1", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-7", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-6", "https://www.w3.org/TR/compute-pressure/#dfn-source", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-11", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-types-10", "https://www.w3.org/TR/compute-pressure/#dfn-state", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurestate-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-current-pressure-state-4", - "https://www.w3.org/TR/compute-pressure/#dfn-factors", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-3", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-contributing-factors-3", "https://www.w3.org/TR/compute-pressure/#dfn-time", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-12", "https://www.w3.org/TR/compute-pressure/#the-source-attribute", @@ -326,20 +303,15 @@ "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-state", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-state-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-state-1", - "https://www.w3.org/TR/compute-pressure/#the-factors-attribute", - "https://www.w3.org/TR/compute-pressure/#x10-3-3-the-factors-attribute", - "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-factors", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-factors-2", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-factors-2", "https://www.w3.org/TR/compute-pressure/#the-time-attribute", - "https://www.w3.org/TR/compute-pressure/#x10-3-4-the-time-attribute", + "https://www.w3.org/TR/compute-pressure/#x10-3-3-the-time-attribute", "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-time", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-time-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-time-1", "https://www.w3.org/TR/compute-pressure/#the-tojson-member", - "https://www.w3.org/TR/compute-pressure/#x10-3-5-the-tojson-member", + "https://www.w3.org/TR/compute-pressure/#x10-3-4-the-tojson-member", "https://www.w3.org/TR/compute-pressure/#dom-pressurerecord-tojson", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-8", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-7", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-tojson-2", "https://www.w3.org/TR/compute-pressure/#the-pressureobserveroptions-dictionary", "https://www.w3.org/TR/compute-pressure/#x10-4-the-pressureobserveroptions-dictionary", @@ -356,15 +328,15 @@ "https://www.w3.org/TR/compute-pressure/#dfn-requested-sampling-rate", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-reporting-rate-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-requested-sampling-rate-6", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-7", - "https://www.w3.org/TR/compute-pressure/#h-note-7", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-6", + "https://www.w3.org/TR/compute-pressure/#h-note-6", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-user-agent-14", "https://www.w3.org/TR/compute-pressure/#life-cycle", "https://www.w3.org/TR/compute-pressure/#x10-5-life-cycle-and-garbage-collection", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-registered-observer-5", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-registered-observer-list-7", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-8", - "https://www.w3.org/TR/compute-pressure/#h-note-8", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-7", + "https://www.w3.org/TR/compute-pressure/#h-note-7", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-13", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-registered-observer-list-8", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-observe-4", @@ -377,11 +349,11 @@ "https://www.w3.org/TR/compute-pressure/#x10-6-processing-model", "https://www.w3.org/TR/compute-pressure/#supporting-algorithms", "https://www.w3.org/TR/compute-pressure/#x10-6-1-supporting-algorithms", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-8", + "https://www.w3.org/TR/compute-pressure/#h-note-8", + "https://www.w3.org/TR/compute-pressure/#dfn-passes-privacy-test", "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-9", "https://www.w3.org/TR/compute-pressure/#h-note-9", - "https://www.w3.org/TR/compute-pressure/#dfn-passes-privacy-test", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-10", - "https://www.w3.org/TR/compute-pressure/#h-note-10", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-requested-sampling-rate-7", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-15", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-sampling-rate-5", @@ -396,14 +368,13 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-lastrecordmap-6", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-state-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-change-in-contributing-factors-is-substantial-2", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-factors-3", "https://www.w3.org/TR/compute-pressure/#data-delivery", "https://www.w3.org/TR/compute-pressure/#x10-6-2-data-delivery", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-data-delivery-6", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-17", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-types-11", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-11", - "https://www.w3.org/TR/compute-pressure/#h-note-11", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-10", + "https://www.w3.org/TR/compute-pressure/#h-note-10", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-18", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-data-delivery-7", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-16", @@ -412,10 +383,9 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-19", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-types-13", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-20", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-12", - "https://www.w3.org/TR/compute-pressure/#h-note-12", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-7", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-contributing-factors-4", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-11", + "https://www.w3.org/TR/compute-pressure/#h-note-11", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-5", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-registered-observer-list-9", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-passes-privacy-test-1", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-passes-rate-test-1", @@ -424,10 +394,9 @@ "https://www.w3.org/TR/compute-pressure/#queue-a-pressurerecord", "https://www.w3.org/TR/compute-pressure/#x10-6-3-queue-a-pressurerecord", "https://www.w3.org/TR/compute-pressure/#dfn-queue-a-record", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-9", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-8", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-state-3", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-factors-4", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-time-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-queuedrecords-5", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-max-queued-records-1", @@ -463,8 +432,8 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-registered-observer-list-12", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-source-types-15", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-data-delivery-11", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-13", - "https://www.w3.org/TR/compute-pressure/#h-note-13", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-12", + "https://www.w3.org/TR/compute-pressure/#h-note-12", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-passes-privacy-test-2", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-data-delivery-12", "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-platform-collector-21", @@ -482,8 +451,8 @@ "https://www.w3.org/TR/compute-pressure/#x11-1-1-rate-limiting-change-notifications", "https://www.w3.org/TR/compute-pressure/#no-side-channels", "https://www.w3.org/TR/compute-pressure/#x11-1-2-no-side-channels", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-8", - "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-9", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-6", + "https://www.w3.org/TR/compute-pressure/#ref-for-dfn-pressure-states-7", "https://www.w3.org/TR/compute-pressure/#first-party-contexts", "https://www.w3.org/TR/compute-pressure/#x11-1-3-first-party-contexts", "https://www.w3.org/TR/compute-pressure/#examples", @@ -495,8 +464,8 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-disconnect-6", "https://www.w3.org/TR/compute-pressure/#example-how-to-handle-all-state-changes-right-up-until-disconnect", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-unobserve-4", - "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-14", - "https://www.w3.org/TR/compute-pressure/#h-note-14", + "https://www.w3.org/TR/compute-pressure/#issue-container-generatedID-13", + "https://www.w3.org/TR/compute-pressure/#h-note-13", "https://www.w3.org/TR/compute-pressure/#example-how-to-tell-the-observer-to-stop-watching-for-state-changes-for-a-specific-source", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-disconnect-7", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-disconnect-8", @@ -512,8 +481,7 @@ "https://www.w3.org/TR/compute-pressure/#actual-idl-index", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-12", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurestate-4", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-4", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-10", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-9", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-17", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-18", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-constructor-2", @@ -524,17 +492,15 @@ "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-unobserve-5", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-14", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-disconnect-9", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-11", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-10", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-takerecords-4", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-15", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserver-supportedsources-5", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-12", + "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-11", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressuresource-16", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-source-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurestate-5", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-state-3", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurefactor-5", - "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-factors-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-time-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressurerecord-tojson-3", "https://www.w3.org/TR/compute-pressure/#ref-for-dom-pressureobserveroptions-4", diff --git a/tr/ids/css-overflow-3.json b/tr/ids/css-overflow-3.json index e1a79c1ba6f5..21d92c96bd15 100644 --- a/tr/ids/css-overflow-3.json +++ b/tr/ids/css-overflow-3.json @@ -80,7 +80,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-scrollable-overflow-region%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-scrollable-overflow-region%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x12", + "https://www.w3.org/TR/css-overflow-3/#ref-for-padding-box", "https://www.w3.org/TR/css-overflow-3/#ref-for-line-box", "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-negative-scrollable-overflow-region", @@ -230,7 +230,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-block%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-mult-num-range", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A7", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x1", + "https://www.w3.org/TR/css-overflow-3/#ref-for-shorthand-property%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-x%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-y%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#valdef-overflow-visible", @@ -240,7 +240,7 @@ "https://www.w3.org/TR/css-overflow-3/#valdef-overflow-hidden", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-valdef-overflow-hidden", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-valdef-overflow-hidden", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x12%E2%91%A0", + "https://www.w3.org/TR/css-overflow-3/#ref-for-padding-box%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-valdef-overflow-clip", @@ -249,23 +249,25 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A8", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-display", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#valdef-overflow-scroll", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-valdef-overflow-scroll", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-valdef-overflow-scroll", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x12%E2%91%A1", + "https://www.w3.org/TR/css-overflow-3/#ref-for-padding-box%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#valdef-overflow-auto", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-valdef-overflow-auto", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-valdef-overflow-auto", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-scroll", "https://www.w3.org/TR/css-overflow-3/#ref-for-scrollable-overflow%E2%91%A5", - "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-visible%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-clip%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-auto", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-x%E2%91%A3", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-y%E2%91%A3", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-visible%E2%91%A1", @@ -299,7 +301,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-x%E2%91%A4", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-y%E2%91%A4", - "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A0", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-scroll%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-auto%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#ref-for-padding-edge", @@ -315,7 +317,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-auto%E2%91%A3", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-scroll%E2%91%A2", - "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A1", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A3", "https://www.w3.org/TR/css-overflow-3/#ref-for-paged-media", "https://www.w3.org/TR/css-overflow-3/#overflow-clip-margin", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow-clip-margin%E2%91%A1", @@ -348,7 +350,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#ref-for-overflow-clip-edge%E2%91%A4", "https://www.w3.org/TR/css-overflow-3/#overflow-propagation", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x1%E2%91%A0", + "https://www.w3.org/TR/css-overflow-3/#ref-for-x1", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-display%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-display-none", "https://www.w3.org/TR/css-overflow-3/#ref-for-the-html-element", @@ -368,7 +370,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-visible%E2%91%A6", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-auto%E2%91%A4", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-clip%E2%91%A5", - "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A2", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A4", "https://www.w3.org/TR/css-overflow-3/#smooth-scrolling", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-scroll-behavior", "https://www.w3.org/TR/css-overflow-3/#propdef-scroll-behavior", @@ -378,7 +380,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-scroll-behavior%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-scroll-container%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x1%E2%91%A1", + "https://www.w3.org/TR/css-overflow-3/#ref-for-x1%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-scroll-behavior%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-the-body-element%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#valdef-scroll-behavior-auto", @@ -391,7 +393,7 @@ "https://www.w3.org/TR/css-overflow-3/#scrollbar-sizing", "https://www.w3.org/TR/css-overflow-3/#ref-for-background-positioning-area", "https://www.w3.org/TR/css-overflow-3/#ref-for-background-painting-area", - "https://www.w3.org/TR/css-overflow-3/#ref-for-x12%E2%91%A2", + "https://www.w3.org/TR/css-overflow-3/#ref-for-padding-box%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#example-eb6b07cc", "https://www.w3.org/TR/css-overflow-3/#ref-for-background-positioning-area%E2%91%A0", "https://www.w3.org/TR/css-overflow-3/#ref-for-content-area", @@ -457,7 +459,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-scrollbar-gutter%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-overflow-3/#ref-for-classic-scrollbars%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#ref-for-propdef-overflow%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A3", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A5", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-scroll%E2%91%A4", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-auto%E2%91%A6", "https://www.w3.org/TR/css-overflow-3/#ref-for-overlay-scrollbars%E2%91%A3", @@ -487,7 +489,7 @@ "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-auto%E2%91%A7", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-scrollbar-gutter-auto%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-scrollbar-gutter-stable%E2%91%A0", - "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A4", + "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-hidden%E2%91%A6", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-scrollbar-gutter-auto%E2%91%A2", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-scrollbar-gutter-stable%E2%91%A1", "https://www.w3.org/TR/css-overflow-3/#ref-for-valdef-overflow-visible%E2%91%A7", @@ -604,12 +606,21 @@ "https://www.w3.org/TR/css-overflow-3/#29fdb9892b034260cdd1ec722311937f", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-29fdb9892b034260cdd1ec722311937f", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-29fdb9892b034260cdd1ec722311937f", + "https://www.w3.org/TR/css-overflow-3/#7aa27e2a6ea4807baf30c730acd21017", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-7aa27e2a6ea4807baf30c730acd21017", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-7aa27e2a6ea4807baf30c730acd21017", "https://www.w3.org/TR/css-overflow-3/#25cf592dbaa389292cbb9e3ead411ed2", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-25cf592dbaa389292cbb9e3ead411ed2", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-25cf592dbaa389292cbb9e3ead411ed2", "https://www.w3.org/TR/css-overflow-3/#941f554821dd80404e5385677d8f4353", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-941f554821dd80404e5385677d8f4353", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-941f554821dd80404e5385677d8f4353", + "https://www.w3.org/TR/css-overflow-3/#73b84ac260a0f4d6ad805a2ad370bffe", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-73b84ac260a0f4d6ad805a2ad370bffe", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-73b84ac260a0f4d6ad805a2ad370bffe", + "https://www.w3.org/TR/css-overflow-3/#6b9a7aed44b42fa2ba51bb920530dd64", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-6b9a7aed44b42fa2ba51bb920530dd64", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-6b9a7aed44b42fa2ba51bb920530dd64", "https://www.w3.org/TR/css-overflow-3/#ac58363481367301cd1455834baa79f8", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-ac58363481367301cd1455834baa79f8", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-ac58363481367301cd1455834baa79f8", @@ -619,6 +630,9 @@ "https://www.w3.org/TR/css-overflow-3/#d3ed6d40c6255374ff59a99d0e30897e", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-d3ed6d40c6255374ff59a99d0e30897e", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-d3ed6d40c6255374ff59a99d0e30897e", + "https://www.w3.org/TR/css-overflow-3/#ebb5aebd0030b6c03607ef6bc1dcc94f", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-ebb5aebd0030b6c03607ef6bc1dcc94f", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-ebb5aebd0030b6c03607ef6bc1dcc94f", "https://www.w3.org/TR/css-overflow-3/#bc817a09b350308f7ae302b8b6f20a86", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-bc817a09b350308f7ae302b8b6f20a86", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-bc817a09b350308f7ae302b8b6f20a86", @@ -661,21 +675,27 @@ "https://www.w3.org/TR/css-overflow-3/#f6e7a472952be97ad69bb9f0e3dacdc7", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-f6e7a472952be97ad69bb9f0e3dacdc7", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-f6e7a472952be97ad69bb9f0e3dacdc7", + "https://www.w3.org/TR/css-overflow-3/#215fea71d540b6ce9abc84c6e08ec55d", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-215fea71d540b6ce9abc84c6e08ec55d", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-215fea71d540b6ce9abc84c6e08ec55d", "https://www.w3.org/TR/css-overflow-3/#cdce85074d33fb9b6f10a1fdbb78698e", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-cdce85074d33fb9b6f10a1fdbb78698e", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-cdce85074d33fb9b6f10a1fdbb78698e", - "https://www.w3.org/TR/css-overflow-3/#67c56c1dd32074211bd93a4a7b622103", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-67c56c1dd32074211bd93a4a7b622103", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-67c56c1dd32074211bd93a4a7b622103", - "https://www.w3.org/TR/css-overflow-3/#845233d15211ffde7eaca9120f03f7f0", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-845233d15211ffde7eaca9120f03f7f0", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-845233d15211ffde7eaca9120f03f7f0", - "https://www.w3.org/TR/css-overflow-3/#531a06e8edc94bccbb6ab44f31908630", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-531a06e8edc94bccbb6ab44f31908630", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-531a06e8edc94bccbb6ab44f31908630", + "https://www.w3.org/TR/css-overflow-3/#8f755a1018a7f338689eb5d37c377e2c", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-8f755a1018a7f338689eb5d37c377e2c", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-8f755a1018a7f338689eb5d37c377e2c", + "https://www.w3.org/TR/css-overflow-3/#044682bbc62d81bbb722af15cc71126b", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-044682bbc62d81bbb722af15cc71126b", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-044682bbc62d81bbb722af15cc71126b", + "https://www.w3.org/TR/css-overflow-3/#e4d920bb1f5c7177739faa04e695eab2", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-e4d920bb1f5c7177739faa04e695eab2", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-e4d920bb1f5c7177739faa04e695eab2", "https://www.w3.org/TR/css-overflow-3/#f5f92baf8718946085e47c0d28a77ad9", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-f5f92baf8718946085e47c0d28a77ad9", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-f5f92baf8718946085e47c0d28a77ad9", + "https://www.w3.org/TR/css-overflow-3/#925cc0bfb1b6f4a7a218fddc726e6f78", + "https://www.w3.org/TR/css-overflow-3/#infopanel-for-925cc0bfb1b6f4a7a218fddc726e6f78", + "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-925cc0bfb1b6f4a7a218fddc726e6f78", "https://www.w3.org/TR/css-overflow-3/#f1dd87e85eb30de323d982cd7e219e88", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-f1dd87e85eb30de323d982cd7e219e88", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-f1dd87e85eb30de323d982cd7e219e88", @@ -772,27 +792,9 @@ "https://www.w3.org/TR/css-overflow-3/#b2ca6a6b5cd53adae8b1fa1e6c07ed3a", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-b2ca6a6b5cd53adae8b1fa1e6c07ed3a", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-b2ca6a6b5cd53adae8b1fa1e6c07ed3a", - "https://www.w3.org/TR/css-overflow-3/#ff9713b47135ad9e5986a9c253ef92ad", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-ff9713b47135ad9e5986a9c253ef92ad", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-ff9713b47135ad9e5986a9c253ef92ad", "https://www.w3.org/TR/css-overflow-3/#8133c936c380621f657cb70810ece24e", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-8133c936c380621f657cb70810ece24e", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-8133c936c380621f657cb70810ece24e", - "https://www.w3.org/TR/css-overflow-3/#ac8c70810fc5c1538165326ad268e7c9", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-ac8c70810fc5c1538165326ad268e7c9", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-ac8c70810fc5c1538165326ad268e7c9", - "https://www.w3.org/TR/css-overflow-3/#0b6d5b1cfdc09216d73fc7c961c66e9f", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-0b6d5b1cfdc09216d73fc7c961c66e9f", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-0b6d5b1cfdc09216d73fc7c961c66e9f", - "https://www.w3.org/TR/css-overflow-3/#6f40cb5a28bcb31e0419725620eec75c", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-6f40cb5a28bcb31e0419725620eec75c", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-6f40cb5a28bcb31e0419725620eec75c", - "https://www.w3.org/TR/css-overflow-3/#dc5ef1c065614be7901830121e149160", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-dc5ef1c065614be7901830121e149160", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-dc5ef1c065614be7901830121e149160", - "https://www.w3.org/TR/css-overflow-3/#09bf521f441dabac4b5908c99d5efb05", - "https://www.w3.org/TR/css-overflow-3/#infopanel-for-09bf521f441dabac4b5908c99d5efb05", - "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-09bf521f441dabac4b5908c99d5efb05", "https://www.w3.org/TR/css-overflow-3/#36f5b89fe8fea729a717819dd2e88793", "https://www.w3.org/TR/css-overflow-3/#infopanel-for-36f5b89fe8fea729a717819dd2e88793", "https://www.w3.org/TR/css-overflow-3/#infopaneltitle-for-36f5b89fe8fea729a717819dd2e88793", @@ -839,9 +841,9 @@ "https://www.w3.org/TR/css-overflow-3/#biblio-css-contain-2", "https://www.w3.org/TR/css-overflow-3/#biblio-css-display-3", "https://www.w3.org/TR/css-overflow-3/#biblio-css-grid-2", + "https://www.w3.org/TR/css-overflow-3/#biblio-css-inline-3", "https://www.w3.org/TR/css-overflow-3/#biblio-css-logical-1", "https://www.w3.org/TR/css-overflow-3/#biblio-css-masking-1", - "https://www.w3.org/TR/css-overflow-3/#biblio-css-overflow-3", "https://www.w3.org/TR/css-overflow-3/#biblio-css-overflow-4", "https://www.w3.org/TR/css-overflow-3/#biblio-css-pseudo-4", "https://www.w3.org/TR/css-overflow-3/#biblio-css-scroll-snap-1", diff --git a/tr/ids/css-text-4.json b/tr/ids/css-text-4.json index 72bf75ab12ca..9410947b5b6d 100644 --- a/tr/ids/css-text-4.json +++ b/tr/ids/css-text-4.json @@ -35,19 +35,25 @@ "https://www.w3.org/TR/css-text-4/#languages", "https://www.w3.org/TR/css-text-4/#ref-for-content-language", "https://www.w3.org/TR/css-text-4/#content-language", - "https://www.w3.org/TR/css-text-4/#ref-for-document-language", + "https://www.w3.org/TR/css-text-4/#infopanel-for-content-language", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-content-language", + "https://www.w3.org/TR/css-text-4/#ref-for-doclanguage", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-document-language%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-doclanguage%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-language", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A3", "https://www.w3.org/TR/css-text-4/#content-writing-system", - "https://www.w3.org/TR/css-text-4/#ref-for-document-language%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#infopanel-for-content-writing-system", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-content-writing-system", + "https://www.w3.org/TR/css-text-4/#ref-for-doclanguage%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A4", "https://www.w3.org/TR/css-text-4/#example-d77591b6", "https://www.w3.org/TR/css-text-4/#characters", "https://www.w3.org/TR/css-text-4/#character", + "https://www.w3.org/TR/css-text-4/#infopanel-for-character", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-character", "https://www.w3.org/TR/css-text-4/#ref-for-character", "https://www.w3.org/TR/css-text-4/#ref-for-character%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-character%E2%91%A1", @@ -59,9 +65,13 @@ "https://www.w3.org/TR/css-text-4/#ref-for-character%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-character%E2%91%A8", "https://www.w3.org/TR/css-text-4/#typographic-character-unit", + "https://www.w3.org/TR/css-text-4/#infopanel-for-typographic-character-unit", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-typographic-character-unit", "https://www.w3.org/TR/css-text-4/#ref-for-character%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit", "https://www.w3.org/TR/css-text-4/#grapheme-cluster", + "https://www.w3.org/TR/css-text-4/#infopanel-for-grapheme-cluster", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-grapheme-cluster", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1", "https://www.w3.org/TR/css-text-4/#example-8c80c59b", @@ -74,7 +84,11 @@ "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-orientation-upright", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A5", "https://www.w3.org/TR/css-text-4/#typographic-letter-unit", + "https://www.w3.org/TR/css-text-4/#infopanel-for-typographic-letter-unit", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-typographic-letter-unit", "https://www.w3.org/TR/css-text-4/#letter", + "https://www.w3.org/TR/css-text-4/#infopanel-for-letter", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-letter", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A7", @@ -91,6 +105,8 @@ "https://www.w3.org/TR/css-text-4/#text-transform", "https://www.w3.org/TR/css-text-4/#caps-prop", "https://www.w3.org/TR/css-text-4/#propdef-text-transform", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-transform", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-transform", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1", @@ -99,16 +115,26 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-transform%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-transform-none", "https://www.w3.org/TR/css-text-4/#valdef-text-transform-capitalize", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-transform-capitalize", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-transform-capitalize", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit", "https://www.w3.org/TR/css-text-4/#valdef-text-transform-uppercase", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-transform-uppercase", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-transform-uppercase", "https://www.w3.org/TR/css-text-4/#ref-for-letter", "https://www.w3.org/TR/css-text-4/#valdef-text-transform-lowercase", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-transform-lowercase", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-transform-lowercase", "https://www.w3.org/TR/css-text-4/#ref-for-letter%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-transform-full-width", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-transform-full-width", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-transform-full-width", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-full-width", "https://www.w3.org/TR/css-text-4/#ref-for-full-width%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-transform-full-size-kana", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-transform-full-size-kana", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-transform-full-size-kana", "https://www.w3.org/TR/css-text-4/#ref-for-kana-small", "https://www.w3.org/TR/css-text-4/#ref-for-kana-full-size", "https://www.w3.org/TR/css-text-4/#example-5b7dad2f", @@ -116,7 +142,7 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-transform%E2%91%A2", "https://www.w3.org/TR/css-text-4/#example-c3f5b224", "https://www.w3.org/TR/css-text-4/#example-0f66f643", - "https://www.w3.org/TR/css-text-4/#ref-for-ruby", + "https://www.w3.org/TR/css-text-4/#ref-for-dfn-ruby", "https://www.w3.org/TR/css-text-4/#ref-for-kana-small%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-kana-small%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-transform%E2%91%A3", @@ -125,11 +151,13 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-transform%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-transform-capitalize%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-document-language%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-doclanguage%E2%91%A2", "https://www.w3.org/TR/css-text-4/#example-eab56caf", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system", "https://www.w3.org/TR/css-text-4/#full-width", + "https://www.w3.org/TR/css-text-4/#infopanel-for-full-width", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-full-width", "https://www.w3.org/TR/css-text-4/#half-width", "https://www.w3.org/TR/css-text-4/#ref-for-full-width%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-kana-small%E2%91%A2", @@ -149,6 +177,8 @@ "https://www.w3.org/TR/css-text-4/#word-boundary-detection", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-detection", "https://www.w3.org/TR/css-text-4/#propdef-word-boundary-detection", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-word-boundary-detection", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-word-boundary-detection", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-word-boundary-detection-lang", @@ -156,10 +186,14 @@ "https://www.w3.org/TR/css-text-4/#issue-f75f4086", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary", "https://www.w3.org/TR/css-text-4/#virtual-word-boundary", + "https://www.w3.org/TR/css-text-4/#infopanel-for-virtual-word-boundary", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-virtual-word-boundary", "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-word-boundary-detection-manual", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-word-boundary-detection-manual", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-word-boundary-detection-manual", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break", @@ -169,6 +203,8 @@ "https://www.w3.org/TR/css-text-4/#ref-for-the-wbr-element%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1", "https://www.w3.org/TR/css-text-4/#valdef-word-boundary-detection-normal", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-word-boundary-detection-normal", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-word-boundary-detection-normal", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-word-boundary-detection-manual", @@ -182,9 +218,13 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-word-boundary-detection-auto-lang", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-word-boundary-detection-lang%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-word-boundary-detection-auto-lang", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-word-boundary-detection-auto-lang", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A6", "https://www.w3.org/TR/css-text-4/#typedef-word-boundary-detection-lang", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-word-boundary-detection-lang%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#infopanel-for-typedef-word-boundary-detection-lang", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-typedef-word-boundary-detection-lang", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-ident", "https://www.w3.org/TR/css-text-4/#ref-for-string-value", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A8", @@ -194,13 +234,14 @@ "https://www.w3.org/TR/css-text-4/#ref-for-used-value", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-word-boundary-detection-normal", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-text-run", + "https://www.w3.org/TR/css-text-4/#ref-for-css-text-sequence", "https://www.w3.org/TR/css-text-4/#ref-for-lang-pseudo", "https://www.w3.org/TR/css-text-4/#example-5f0d492c", - "https://www.w3.org/TR/css-text-4/#example-446cae99", + "https://www.w3.org/TR/css-text-4/#example-17ccca76", "https://www.w3.org/TR/css-text-4/#ref-for-at-ruledef-supports", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-declared-value", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-detection%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-word-boundary-detection-lang%E2%91%A5", @@ -216,7 +257,7 @@ "https://www.w3.org/TR/css-text-4/#ref-for-line-breaking-process", "https://www.w3.org/TR/css-text-4/#ref-for-intrinsic-sizing", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-selector", + "https://www.w3.org/TR/css-text-4/#ref-for-x15", "https://www.w3.org/TR/css-text-4/#ref-for-virtual-word-boundary%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#example-07f2636a", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A0", @@ -245,15 +286,17 @@ "https://www.w3.org/TR/css-text-4/#word-boundary-expansion", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A1", "https://www.w3.org/TR/css-text-4/#propdef-word-boundary-expansion", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-word-boundary-expansion", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-word-boundary-expansion", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5", "https://www.w3.org/TR/css-text-4/#issue-f75f4086%E2%91%A0", "https://www.w3.org/TR/css-text-4/#issue-217111e5", "https://www.w3.org/TR/css-text-4/#valdef-word-boundary-expansion-none", "https://www.w3.org/TR/css-text-4/#valdef-word-boundary-expansion-space", - "https://www.w3.org/TR/css-text-4/#ref-for-text-run%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-css-text-sequence%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-word-boundary-expansion-ideographic-space", - "https://www.w3.org/TR/css-text-4/#ref-for-text-run%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-css-text-sequence%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-margin", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-border", @@ -276,258 +319,322 @@ "https://www.w3.org/TR/css-text-4/#white-space-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space", "https://www.w3.org/TR/css-text-4/#propdef-white-space", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-white-space", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-white-space", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-wrapping", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-longhand", + "https://www.w3.org/TR/css-text-4/#ref-for-initial-value", + "https://www.w3.org/TR/css-text-4/#ref-for-shorthand-property", + "https://www.w3.org/TR/css-text-4/#ref-for-longhand%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-normal", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-normal", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-normal", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-pre", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-pre", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-pre", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-nowrap", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-nowrap%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-pre-wrap", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-pre-wrap", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-pre-wrap", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-pre-line", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-pre-line", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-pre-line", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-breaks", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#issue-b152bd86", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces", - "https://www.w3.org/TR/css-text-4/#issue-46ad7610", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#valdef-white-space-normal", + "https://www.w3.org/TR/css-text-4/#issue-b9099749", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal", "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#valdef-white-space-pre", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre", "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break", "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#valdef-white-space-nowrap", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#valdef-white-space-pre-wrap", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#valdef-white-space-break-spaces", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#valdef-white-space-pre-line", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#preserved-white-space", - "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-hang", "https://www.w3.org/TR/css-text-4/#ref-for-intrinsic-sizing%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-spaces", - "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-break-spaces", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#white-space-processing", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-tabs", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A7", "https://www.w3.org/TR/css-text-4/#segment-normalization", "https://www.w3.org/TR/css-text-4/#segment-break", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-segment-break", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-segment-break", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-script", "https://www.w3.org/TR/css-text-4/#ref-for-normalize-newlines", "https://www.w3.org/TR/css-text-4/#white-space-collapsing", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#issue-e390c1ad", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#issue-257c8a37", "https://www.w3.org/TR/css-text-4/#propdef-white-space-collapse", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-white-space-collapse", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-white-space-collapse", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-collapse", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-collapse-collapse", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-collapse-collapse", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-preserve", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-collapse-preserve", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-collapse-preserve", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-preserve-breaks", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-collapse-preserve-breaks", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-collapse-preserve-breaks", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A4", "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-preserve-spaces", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-collapse-preserve-spaces", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-collapse-preserve-spaces", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-break-spaces", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-collapse-break-spaces", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-collapse-break-spaces", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-white-space-collapse-discard", - "https://www.w3.org/TR/css-text-4/#issue-5f31cc0f", - "https://www.w3.org/TR/css-text-4/#example-7001cfa9", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-collapse-discard", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-collapse-discard", + "https://www.w3.org/TR/css-text-4/#issue-edd726d6", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#preserved-white-space", + "https://www.w3.org/TR/css-text-4/#infopanel-for-preserved-white-space", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-preserved-white-space", + "https://www.w3.org/TR/css-text-4/#example-6af3efc0", "https://www.w3.org/TR/css-text-4/#white-space-trim", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#propdef-text-space-trim", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#text-space-trim", + "https://www.w3.org/TR/css-text-4/#propdef-white-space-trim", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-white-space-trim", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-white-space-trim", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-block-container", - "https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-inner", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-before", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-after", + "https://www.w3.org/TR/css-text-4/#valdef-white-space-trim-discard-inner", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-white-space-trim-discard-inner", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-white-space-trim-discard-inner", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-before", - "https://www.w3.org/TR/css-text-4/#valdef-text-space-trim-discard-after", - "https://www.w3.org/TR/css-text-4/#example-57619fe7", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#example-94e0c859", + "https://www.w3.org/TR/css-text-4/#example-a4aedd3c", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A5", "https://www.w3.org/TR/css-text-4/#white-space-rules", "https://www.w3.org/TR/css-text-4/#white-space", + "https://www.w3.org/TR/css-text-4/#infopanel-for-white-space", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-white-space", "https://www.w3.org/TR/css-text-4/#spaces", + "https://www.w3.org/TR/css-text-4/#infopanel-for-spaces", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-spaces", "https://www.w3.org/TR/css-text-4/#tabs", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#infopanel-for-tabs", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-tabs", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A2", "https://www.w3.org/TR/css-text-4/#other-space-separators", + "https://www.w3.org/TR/css-text-4/#infopanel-for-other-space-separators", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-other-space-separators", "https://www.w3.org/TR/css-text-4/#white-space-phase-1", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-inline-formatting-context", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-line-breaking-process%E2%91%A1", "https://www.w3.org/TR/css-text-4/#bidi-formatting-characters", "https://www.w3.org/TR/css-text-4/#collapse", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-breaks%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-text-4/#collapsible-white-space", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#infopanel-for-collapsible-white-space", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-collapsible-white-space", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-spaces", "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#egbidiwscollapse", + "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-spaces%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-break-spaces%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#egbidiwscollapse", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-text-4/#white-space-phase-2", "https://www.w3.org/TR/css-text-4/#ref-for-wrapping%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-tab-size-dfn", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-tab-stop", - "https://www.w3.org/TR/css-text-4/#ref-for-ch", "https://www.w3.org/TR/css-text-4/#ref-for-tab-stop%E2%91%A0", "https://www.w3.org/TR/css-text-4/#tab-stop", + "https://www.w3.org/TR/css-text-4/#infopanel-for-tab-stop", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-tab-stop", "https://www.w3.org/TR/css-text-4/#ref-for-tab-size-dfn%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-tab-size-dfn%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-tab-size", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-breaks%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-breaks%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-nowrap%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-break-spaces%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#issue-a72a5cd8", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#example-af2745cd", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-text-4/#example-e231f51f", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A6", "https://www.w3.org/TR/css-text-4/#example-6c2f4658", @@ -535,60 +642,79 @@ "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A4", "https://www.w3.org/TR/css-text-4/#line-break-transform", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-spaces%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-collapse%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#example-e2e8c9a5", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#issue-c0106ca7", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#example-e2e8c9a5", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-segment-break%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-text-4/#tab-size-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-tab-size%E2%91%A0", "https://www.w3.org/TR/css-text-4/#tab-size", "https://www.w3.org/TR/css-text-4/#propdef-tab-size", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-tab-size", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-tab-size", "https://www.w3.org/TR/css-text-4/#ref-for-number-value", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-length-value", "https://www.w3.org/TR/css-text-4/#tab-size-dfn", + "https://www.w3.org/TR/css-text-4/#infopanel-for-tab-size-dfn", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-tab-size-dfn", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-number-value%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-tabs%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing", "https://www.w3.org/TR/css-text-4/#line-breaking", "https://www.w3.org/TR/css-text-4/#line-break", + "https://www.w3.org/TR/css-text-4/#infopanel-for-line-break", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-line-break", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#forced-line-break", + "https://www.w3.org/TR/css-text-4/#infopanel-for-forced-line-break", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-forced-line-break", "https://www.w3.org/TR/css-text-4/#wrapping", + "https://www.w3.org/TR/css-text-4/#infopanel-for-wrapping", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-wrapping", "https://www.w3.org/TR/css-text-4/#soft-wrap-break", + "https://www.w3.org/TR/css-text-4/#infopanel-for-soft-wrap-break", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-soft-wrap-break", "https://www.w3.org/TR/css-text-4/#line-breaking-process", + "https://www.w3.org/TR/css-text-4/#infopanel-for-line-breaking-process", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-line-breaking-process", "https://www.w3.org/TR/css-text-4/#soft-wrap-opportunity", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#infopanel-for-soft-wrap-opportunity", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-soft-wrap-opportunity", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphens", @@ -596,47 +722,50 @@ "https://www.w3.org/TR/css-text-4/#line-break-details", "https://www.w3.org/TR/css-text-4/#ref-for-line-break", "https://www.w3.org/TR/css-text-4/#ref-for-line-breaking-process%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-overflow-wrap%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-atomic-inline", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-overflow-wrap%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A7", "https://www.w3.org/TR/css-text-4/#word-break-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A5", "https://www.w3.org/TR/css-text-4/#word-break", "https://www.w3.org/TR/css-text-4/#propdef-word-break", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-word-break", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-word-break", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-letter%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-other-space-separators%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A6", "https://www.w3.org/TR/css-text-4/#example-f0d22488", @@ -647,22 +776,26 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-overflow-wrap%E2%91%A2", "https://www.w3.org/TR/css-text-4/#valdef-word-break-normal", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-word-break-normal", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-word-break-normal", "https://www.w3.org/TR/css-text-4/#valdef-word-break-break-all", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-word-break-break-all", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-word-break-break-all", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-word-break-normal", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A7", "https://www.w3.org/TR/css-text-4/#valdef-word-break-keep-all", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-letter-unit%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-line-break-anywhere%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-word-break-normal%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/css-text-4/#example-cc487741", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A0%E2%91%A1", @@ -680,35 +813,45 @@ "https://www.w3.org/TR/css-text-4/#line-break-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#propdef-line-break", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-line-break", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-line-break", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-wrapping%E2%91%A1", "https://www.w3.org/TR/css-text-4/#valdef-line-break-auto", "https://www.w3.org/TR/css-text-4/#valdef-line-break-loose", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-line-break-loose", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-line-break-loose", "https://www.w3.org/TR/css-text-4/#valdef-line-break-normal", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-line-break-normal", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-line-break-normal", "https://www.w3.org/TR/css-text-4/#valdef-line-break-strict", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-line-break-strict", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-line-break-strict", "https://www.w3.org/TR/css-text-4/#valdef-line-break-anywhere", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-line-break-anywhere", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-line-break-anywhere", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-line-break-anywhere%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-normal%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-line%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-nowrap%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-pre-wrap%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-preserved-white-space%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-break-spaces%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-break-spaces%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-line-break-loose%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-line-break-normal%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-line-break-strict%E2%91%A0", @@ -744,24 +887,30 @@ "https://www.w3.org/TR/css-text-4/#hyphens-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphens%E2%91%A0", "https://www.w3.org/TR/css-text-4/#hyphenate", + "https://www.w3.org/TR/css-text-4/#infopanel-for-hyphenate", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-hyphenate", "https://www.w3.org/TR/css-text-4/#example-218209fb", "https://www.w3.org/TR/css-text-4/#hyphenation-opportunity", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#infopanel-for-hyphenation-opportunity", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-hyphenation-opportunity", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenate", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenation-opportunity", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphens%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenate%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenation-opportunity%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-min-content", "https://www.w3.org/TR/css-text-4/#propdef-hyphens", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hyphens", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hyphens", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenate%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A5", "https://www.w3.org/TR/css-text-4/#valdef-hyphens-none", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenation-opportunity%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-text-4/#valdef-hyphens-manual", "https://www.w3.org/TR/css-text-4/#ref-for-hyphenation-opportunity%E2%91%A2", "https://www.w3.org/TR/css-text-4/#example-b6db0d14", @@ -776,7 +925,9 @@ "https://www.w3.org/TR/css-text-4/#hyphenate-character", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphenate-character", "https://www.w3.org/TR/css-text-4/#propdef-hyphenate-character", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hyphenate-character", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hyphenate-character", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-string-value%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-hyphenate-character-auto", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A0%E2%91%A3", @@ -793,6 +944,8 @@ "https://www.w3.org/TR/css-text-4/#hyphenate-size-limits", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphenate-limit-zone", "https://www.w3.org/TR/css-text-4/#propdef-hyphenate-limit-zone", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hyphenate-limit-zone", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hyphenate-limit-zone", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-length-percentage", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-length-percentage%E2%91%A0", @@ -801,26 +954,33 @@ "https://www.w3.org/TR/css-text-4/#hyphenate-char-limits", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphenate-limit-chars", "https://www.w3.org/TR/css-text-4/#propdef-hyphenate-limit-chars", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hyphenate-limit-chars", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hyphenate-limit-chars", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-integer-value", "https://www.w3.org/TR/css-text-4/#ref-for-mult-num-range", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-hyphenate-limit-chars-auto", - "https://www.w3.org/TR/css-text-4/#issue-5e9e02a8", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-hyphenate-limit-chars-auto%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-hyphenate-limit-chars-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-hyphenate-limit-chars-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-hyphenate-limit-chars-auto", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-hyphenate-limit-chars-auto%E2%91%A1", "https://www.w3.org/TR/css-text-4/#example-4ddcbe59", "https://www.w3.org/TR/css-text-4/#hyphenate-line-limits", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphenate-limit-lines", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hyphenate-limit-last", "https://www.w3.org/TR/css-text-4/#propdef-hyphenate-limit-lines", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hyphenate-limit-lines", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hyphenate-limit-lines", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-integer-value%E2%91%A0", "https://www.w3.org/TR/css-text-4/#propdef-hyphenate-limit-last", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hyphenate-limit-last", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hyphenate-limit-last", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-hyphenate-limit-lines-none", "https://www.w3.org/TR/css-text-4/#valdef-hyphenate-limit-lines-always", @@ -835,66 +995,86 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-wrap", "https://www.w3.org/TR/css-text-4/#overflow-wrap", "https://www.w3.org/TR/css-text-4/#propdef-overflow-wrap", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-overflow-wrap", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-overflow-wrap", "https://www.w3.org/TR/css-text-4/#propdef-word-wrap", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-word-wrap", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-word-wrap", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-wrapping%E2%91%A2", "https://www.w3.org/TR/css-text-4/#valdef-overflow-wrap-normal", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-overflow-wrap-anywhere", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-overflow-wrap-anywhere", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-overflow-wrap-anywhere", "https://www.w3.org/TR/css-text-4/#ref-for-character%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-overflow-wrap-anywhere", "https://www.w3.org/TR/css-text-4/#ref-for-min-content%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-overflow-wrap-break-word", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-overflow-wrap-break-word", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-overflow-wrap-break-word", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-overflow-wrap-anywhere%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-overflow-wrap-break-word", "https://www.w3.org/TR/css-text-4/#ref-for-min-content%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-wrap%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-legacy-name-alias", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-overflow-wrap%E2%91%A6", "https://www.w3.org/TR/css-text-4/#text-wrapping", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-wrap-before", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-wrap-after", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-wrap-inside", "https://www.w3.org/TR/css-text-4/#text-wrap", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A5", "https://www.w3.org/TR/css-text-4/#propdef-text-wrap", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-wrap", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-wrap", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A4", "https://www.w3.org/TR/css-text-4/#valdef-text-wrap-wrap", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-wrap-wrap", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-wrap-wrap", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-inline-axis", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-balance", "https://www.w3.org/TR/css-text-4/#valdef-text-wrap-nowrap", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-wrap-nowrap", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-wrap-nowrap", "https://www.w3.org/TR/css-text-4/#valdef-text-wrap-balance", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-wrap-balance", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-wrap-balance", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-inline-formatting-context%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-inline-size", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A5", "https://www.w3.org/TR/css-text-4/#valdef-text-wrap-stable", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-wrap-stable", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-wrap-stable", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-inline-formatting-context%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A6", "https://www.w3.org/TR/css-text-4/#valdef-text-wrap-pretty", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-wrap-pretty", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-wrap-pretty", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-inline-formatting-context%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-nowrap%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-wrap%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-pretty", @@ -905,17 +1085,25 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-wrap-before%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-wrap-after%E2%91%A0", "https://www.w3.org/TR/css-text-4/#propdef-wrap-before", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-wrap-before", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-wrap-before", "https://www.w3.org/TR/css-text-4/#propdef-wrap-after", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-wrap-after", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-wrap-after", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-inline-level", "https://www.w3.org/TR/css-text-4/#ref-for-flex-item", "https://www.w3.org/TR/css-text-4/#ref-for-flex-line", "https://www.w3.org/TR/css-text-4/#valdef-wrap-before-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-wrap-before-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-wrap-before-auto", "https://www.w3.org/TR/css-text-4/#valdef-wrap-before-avoid", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-wrap-before-avoid", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-wrap-before-avoid", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-wrap-before-auto", "https://www.w3.org/TR/css-text-4/#valdef-wrap-before-avoid-line", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-wrap-before-avoid", @@ -935,17 +1123,23 @@ "https://www.w3.org/TR/css-text-4/#wrap-inside", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-wrap-inside%E2%91%A0", "https://www.w3.org/TR/css-text-4/#propdef-wrap-inside", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-wrap-inside", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-wrap-inside", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A4", "https://www.w3.org/TR/css-text-4/#valdef-wrap-inside-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-wrap-inside-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-wrap-inside-auto", "https://www.w3.org/TR/css-text-4/#valdef-wrap-inside-avoid", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-wrap-inside-avoid", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-wrap-inside-avoid", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-wrap-inside-auto", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-wrap-inside-avoid", "https://www.w3.org/TR/css-text-4/#example-avoid", "https://www.w3.org/TR/css-text-4/#example-0e0fea94", "https://www.w3.org/TR/css-text-4/#word-break-shaping", "https://www.w3.org/TR/css-text-4/#ref-for-wrapping%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-opportunity%E2%91%A3%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-break%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-overflow-wrap%E2%91%A7", @@ -961,16 +1155,18 @@ "https://www.w3.org/TR/css-text-4/#text-align-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align", "https://www.w3.org/TR/css-text-4/#propdef-text-align", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-align", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-align", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A3%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-string-value%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-string-value%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-shorthand-property", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-shorthand-property%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-all", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-last", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-justify-all", @@ -979,28 +1175,44 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-last%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-last-auto", "https://www.w3.org/TR/css-text-4/#valdef-text-align-start", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-start", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-start", "https://www.w3.org/TR/css-text-4/#ref-for-start", "https://www.w3.org/TR/css-text-4/#valdef-text-align-end", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-end", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-end", "https://www.w3.org/TR/css-text-4/#ref-for-end", "https://www.w3.org/TR/css-text-4/#valdef-text-align-left", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-left", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-left", "https://www.w3.org/TR/css-text-4/#ref-for-line-left", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-writing-mode", "https://www.w3.org/TR/css-text-4/#valdef-text-align-right", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-right", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-right", "https://www.w3.org/TR/css-text-4/#ref-for-line-right", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-writing-mode%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-align-center", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-center", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-center", "https://www.w3.org/TR/css-text-4/#valdef-text-align-string", "https://www.w3.org/TR/css-text-4/#ref-for-string-value%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-text-align-alignment-character", "https://www.w3.org/TR/css-text-4/#valdef-text-align-justify", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-justify", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-justify", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-last%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-start", "https://www.w3.org/TR/css-text-4/#valdef-text-align-justify-all", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-justify-all", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-justify-all", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-all%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-last%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-justify", "https://www.w3.org/TR/css-text-4/#valdef-text-align-match-parent", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-match-parent", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-match-parent", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-all-inherit", "https://www.w3.org/TR/css-text-4/#ref-for-inherited-value", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-start%E2%91%A0", @@ -1017,7 +1229,7 @@ "https://www.w3.org/TR/css-text-4/#ref-for-line-box", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-justify%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-justification-opportunity", "https://www.w3.org/TR/css-text-4/#ref-for-tab-stop%E2%91%A1", @@ -1049,15 +1261,17 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-all%E2%91%A3", "https://www.w3.org/TR/css-text-4/#text-align-all", "https://www.w3.org/TR/css-text-4/#propdef-text-align-all", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-align-all", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-align-all", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-match-parent%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-shorthand-property%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-shorthand-property%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-last-auto%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-last%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align%E2%91%A4", @@ -1066,15 +1280,19 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-last%E2%91%A5", "https://www.w3.org/TR/css-text-4/#text-align-last", "https://www.w3.org/TR/css-text-4/#propdef-text-align-last", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-align-last", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-align-last", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A8", "https://www.w3.org/TR/css-text-4/#valdef-text-align-last-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-align-last-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-align-last-auto", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-all%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align-all%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-justify%E2%91%A1", @@ -1084,14 +1302,18 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A1", "https://www.w3.org/TR/css-text-4/#text-justify", "https://www.w3.org/TR/css-text-4/#propdef-text-justify", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-justify", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-justify", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-distribute", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-justify%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align%E2%91%A7", "https://www.w3.org/TR/css-text-4/#valdef-text-justify-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-justify-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-justify-auto", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-text-4/#example-d2fa9a6d", @@ -1108,19 +1330,27 @@ "https://www.w3.org/TR/css-text-4/#fig-text-justify-none", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-text-justify-inter-word", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-justify-inter-word", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-justify-inter-word", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing%E2%91%A0", "https://www.w3.org/TR/css-text-4/#fig-text-justify-interword", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A4", "https://www.w3.org/TR/css-text-4/#valdef-text-justify-inter-character", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-justify-inter-character", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-justify-inter-character", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0", "https://www.w3.org/TR/css-text-4/#fig-text-justify-distribute", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A5", "https://www.w3.org/TR/css-text-4/#valdef-text-justify-distribute", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-justify-distribute", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-justify-distribute", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-inter-character", "https://www.w3.org/TR/css-text-4/#ref-for-css-legacy-value-alias", "https://www.w3.org/TR/css-text-4/#valdef-text-justify-ruby", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-justify-ruby", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-justify-ruby", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-auto", "https://www.w3.org/TR/css-text-4/#ref-for-justification-opportunity%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A7", @@ -1128,6 +1358,8 @@ "https://www.w3.org/TR/css-text-4/#ref-for-bopomofo-characters", "https://www.w3.org/TR/css-text-4/#ref-for-ruby-annotation-box", "https://www.w3.org/TR/css-text-4/#valdef-text-justify-no-compress", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-justify-no-compress", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-justify-no-compress", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-autospace", "https://www.w3.org/TR/css-text-4/#issue-a6b9619a", @@ -1136,6 +1368,8 @@ "https://www.w3.org/TR/css-text-4/#expanding-text", "https://www.w3.org/TR/css-text-4/#justification-opportunity", "https://www.w3.org/TR/css-text-4/#expansion-opportunity", + "https://www.w3.org/TR/css-text-4/#infopanel-for-justification-opportunity", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-justification-opportunity", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A1%E2%91%A8", @@ -1206,13 +1440,17 @@ "https://www.w3.org/TR/css-text-4/#text-group-align-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-group-align", "https://www.w3.org/TR/css-text-4/#propdef-text-group-align", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-group-align", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-group-align", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A8", "https://www.w3.org/TR/css-text-4/#group-alignment", + "https://www.w3.org/TR/css-text-4/#infopanel-for-group-alignment", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-group-alignment", "https://www.w3.org/TR/css-text-4/#ref-for-in-flow", "https://www.w3.org/TR/css-text-4/#ref-for-block-formatting-context", "https://www.w3.org/TR/css-text-4/#ref-for-independent-formatting-context", @@ -1250,7 +1488,9 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing%E2%91%A4", "https://www.w3.org/TR/css-text-4/#word-spacing", "https://www.w3.org/TR/css-text-4/#propdef-word-spacing", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-word-spacing", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-word-spacing", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-length-percentage%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-font-size", "https://www.w3.org/TR/css-text-4/#valdef-word-spacing-normal", @@ -1260,6 +1500,8 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-font-size%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#word-separator", + "https://www.w3.org/TR/css-text-4/#infopanel-for-word-separator", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-word-separator", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A3%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-word-separator%E2%91%A0%E2%91%A4", @@ -1267,7 +1509,9 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A4", "https://www.w3.org/TR/css-text-4/#letter-spacing", "https://www.w3.org/TR/css-text-4/#propdef-letter-spacing", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-letter-spacing", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-letter-spacing", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-length-percentage%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-font-size%E2%91%A2", @@ -1276,6 +1520,8 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A3%E2%91%A2", "https://www.w3.org/TR/css-text-4/#valdef-letter-spacing-normal", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-letter-spacing-normal", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-letter-spacing-normal", "https://www.w3.org/TR/css-text-4/#valdef-letter-spacing-length", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A3%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-font-size%E2%91%A3", @@ -1310,12 +1556,14 @@ "https://www.w3.org/TR/css-text-4/#example-9902d8b5", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-text-4/#line-padding-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-padding%E2%91%A0", "https://www.w3.org/TR/css-text-4/#propdef-line-padding", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-line-padding", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-line-padding", "https://www.w3.org/TR/css-text-4/#ref-for-length-value%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A5", @@ -1323,6 +1571,7 @@ "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-inline-level%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-css-text-sequence%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-atomic-inline%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-justification-opportunity%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-text-4/#example-4c81cd27", @@ -1330,35 +1579,53 @@ "https://www.w3.org/TR/css-text-4/#text-autospace-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-autospace%E2%91%A1", "https://www.w3.org/TR/css-text-4/#propdef-text-autospace", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-autospace", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-autospace", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-autospace", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-inline-formatting-context%E2%91%A3", "https://www.w3.org/TR/css-text-4/#typedef-autospace", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-autospace%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-typedef-autospace", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-typedef-autospace", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-normal", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-no-autospace", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-autospace-no-autospace", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-autospace-no-autospace", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-insert", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-autospace-insert", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-autospace-insert", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-autospace-insert", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-autospace-replace", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-autospace-insert%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-replace", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-autospace-replace", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-autospace-replace", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-spaces%E2%91%A2%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-autospace-insert%E2%91%A1", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-ideograph-alpha", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-autospace-ideograph-alpha", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-autospace-ideograph-alpha", "https://www.w3.org/TR/css-text-4/#ref-for-ideographs", "https://www.w3.org/TR/css-text-4/#ref-for-non-ideographic-letters", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-ideograph-numeric", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-autospace-ideograph-numeric", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-autospace-ideograph-numeric", "https://www.w3.org/TR/css-text-4/#ref-for-ideographs%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-non-ideographic-numerals", "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-punctuation", + "https://www.w3.org/TR/css-text-4/#valdef-text-autospace-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-autospace-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-autospace-auto", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A0%E2%91%A7", @@ -1374,19 +1641,29 @@ "https://www.w3.org/TR/css-text-4/#text-spacing-trim-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A1", "https://www.w3.org/TR/css-text-4/#propdef-text-spacing-trim", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-spacing-trim", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-spacing-trim", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-spacing-trim", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-inline-formatting-context%E2%91%A4", "https://www.w3.org/TR/css-text-4/#typedef-spacing-trim", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-spacing-trim%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-typedef-spacing-trim", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-typedef-spacing-trim", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-space-all", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-spacing-trim-space-all", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-spacing-trim-space-all", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-trim-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-spacing-trim-trim-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-spacing-trim-trim-auto", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-opening-punctuation", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-closing-punctuation", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-space-first", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-spacing-trim-space-first", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-spacing-trim-space-first", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-opening-punctuation%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-block-container%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-trim-auto", @@ -1399,10 +1676,14 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hanging-punctuation%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-indent%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-allow-end", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-spacing-trim-allow-end", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-spacing-trim-allow-end", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-closing-punctuation%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-trim-auto%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-space-first", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-trim-auto", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-spacing-trim-auto", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-spacing-trim-auto", "https://www.w3.org/TR/css-text-4/#issue-f384d437", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-auto", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-trim-auto%E2%91%A3", @@ -1426,29 +1707,45 @@ "https://www.w3.org/TR/css-text-4/#text-spacing-classes", "https://www.w3.org/TR/css-text-4/#issue-2a3b8c81", "https://www.w3.org/TR/css-text-4/#ideographs", + "https://www.w3.org/TR/css-text-4/#infopanel-for-ideographs", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-ideographs", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-script%E2%91%A0", "https://www.w3.org/TR/css-text-4/#non-ideographic-letters", + "https://www.w3.org/TR/css-text-4/#infopanel-for-non-ideographic-letters", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-non-ideographic-letters", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-ideographs%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-orientation", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-combine-upright", "https://www.w3.org/TR/css-text-4/#non-ideographic-numerals", + "https://www.w3.org/TR/css-text-4/#infopanel-for-non-ideographic-numerals", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-non-ideographic-numerals", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-general-category%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-orientation%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-combine-upright%E2%91%A0", "https://www.w3.org/TR/css-text-4/#fullwidth-opening-punctuation", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fullwidth-opening-punctuation", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fullwidth-opening-punctuation", "https://www.w3.org/TR/css-text-4/#fullwidth-closing-punctuation", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fullwidth-closing-punctuation", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fullwidth-closing-punctuation", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-colon-punctuation", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-dot-punctuation", "https://www.w3.org/TR/css-text-4/#fullwidth-middle-dot-punctuation", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fullwidth-middle-dot-punctuation", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fullwidth-middle-dot-punctuation", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-colon-punctuation%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-dot-punctuation%E2%91%A0", "https://www.w3.org/TR/css-text-4/#fullwidth-colon-punctuation", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fullwidth-colon-punctuation", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fullwidth-colon-punctuation", "https://www.w3.org/TR/css-text-4/#fullwidth-dot-punctuation", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fullwidth-dot-punctuation", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fullwidth-dot-punctuation", "https://www.w3.org/TR/css-text-4/#fullwidth-ambiguous", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-colon-punctuation%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-fullwidth-dot-punctuation%E2%91%A1", @@ -1463,17 +1760,21 @@ "https://www.w3.org/TR/css-text-4/#text-spacing-property", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing%E2%91%A0", "https://www.w3.org/TR/css-text-4/#propdef-text-spacing", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-spacing", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-spacing", "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-autospace%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-spacing-trim%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-autospace%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-normal", - "https://www.w3.org/TR/css-text-4/#ref-for-longhand", - "https://www.w3.org/TR/css-text-4/#ref-for-initial-value", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-spacing-normal", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-spacing-normal", + "https://www.w3.org/TR/css-text-4/#ref-for-longhand%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-initial-value%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-none", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-space-all%E2%91%A1", @@ -1482,18 +1783,19 @@ "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-auto", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-autospace%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-autospace-auto", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-spacing-trim", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-spacing-trim%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-autospace%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-autospace%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-initial-value%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-initial-value%E2%91%A1", "https://www.w3.org/TR/css-text-4/#valdef-text-spacing-autospace", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-autospace%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-autospace%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-spacing-trim%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A8", - "https://www.w3.org/TR/css-text-4/#ref-for-initial-value%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-initial-value%E2%91%A2", "https://www.w3.org/TR/css-text-4/#boundary-shaping", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-margin%E2%91%A0", @@ -1511,6 +1813,8 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-indent%E2%91%A2", "https://www.w3.org/TR/css-text-4/#text-indent", "https://www.w3.org/TR/css-text-4/#propdef-text-indent", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-text-indent", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-text-indent", "https://www.w3.org/TR/css-text-4/#ref-for-typedef-length-percentage%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-comb-all", "https://www.w3.org/TR/css-text-4/#ref-for-mult-opt", @@ -1528,9 +1832,13 @@ "https://www.w3.org/TR/css-text-4/#ref-for-logical-width", "https://www.w3.org/TR/css-text-4/#ref-for-intrinsic-size-contribution", "https://www.w3.org/TR/css-text-4/#valdef-text-indent-each-line", - "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-indent-each-line", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-indent-each-line", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-soft-wrap-break", "https://www.w3.org/TR/css-text-4/#valdef-text-indent-hanging", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-text-indent-hanging", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-text-indent-hanging", "https://www.w3.org/TR/css-text-4/#example-7dde3c71", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-start%E2%91%A4", @@ -1544,12 +1852,16 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-display", "https://www.w3.org/TR/css-text-4/#hanging", "https://www.w3.org/TR/css-text-4/#hang", + "https://www.w3.org/TR/css-text-4/#infopanel-for-hang", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-hang", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-intrinsic-size", "https://www.w3.org/TR/css-text-4/#ref-for-min-content%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-max-content", "https://www.w3.org/TR/css-text-4/#hanging-glyph", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#infopanel-for-hanging-glyph", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-hanging-glyph", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-inline-box%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-hanging-glyph", @@ -1557,6 +1869,8 @@ "https://www.w3.org/TR/css-text-4/#ref-for-scrollable-overflow", "https://www.w3.org/TR/css-text-4/#ref-for-scrollable-overflow%E2%91%A0", "https://www.w3.org/TR/css-text-4/#conditionally-hang", + "https://www.w3.org/TR/css-text-4/#infopanel-for-conditionally-hang", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-conditionally-hang", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A5", @@ -1569,26 +1883,35 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hanging-punctuation%E2%91%A2", "https://www.w3.org/TR/css-text-4/#hanging-punctuation", "https://www.w3.org/TR/css-text-4/#propdef-hanging-punctuation", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#infopanel-for-propdef-hanging-punctuation", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-propdef-hanging-punctuation", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-one%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-comb-any%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hanging-punctuation%E2%91%A3", "https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-none", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A0%E2%91%A8", "https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-first", + "https://www.w3.org/TR/css-text-4/#ref-for-first-formatted-line%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-last", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-force-end", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-hanging-punctuation-force-end", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-hanging-punctuation-force-end", "https://www.w3.org/TR/css-text-4/#ref-for-stop-or-comma", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-text-4/#valdef-hanging-punctuation-allow-end", + "https://www.w3.org/TR/css-text-4/#infopanel-for-valdef-hanging-punctuation-allow-end", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-valdef-hanging-punctuation-allow-end", "https://www.w3.org/TR/css-text-4/#ref-for-stop-or-comma%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-conditionally-hang%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-text-4/#stop-or-comma", + "https://www.w3.org/TR/css-text-4/#infopanel-for-stop-or-comma", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-stop-or-comma", "https://www.w3.org/TR/css-text-4/#ref-for-hang%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-text-4/#example-68d23fbc", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-hanging-punctuation-allow-end", @@ -1639,17 +1962,19 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-line-padding%E2%91%A1", "https://www.w3.org/TR/css-text-4/#plaintext", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-transform%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-collapsible-white-space%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-white-space%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-block", - "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-forced-line-break%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#default-stylesheet", "https://www.w3.org/TR/css-text-4/#example-89b0a4b1", "https://www.w3.org/TR/css-text-4/#script-groups", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-script%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-justification-opportunity%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-text-4/#block-scripts", + "https://www.w3.org/TR/css-text-4/#infopanel-for-block-scripts", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-block-scripts", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-script%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-east-asian-width%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A3", @@ -1657,16 +1982,26 @@ "https://www.w3.org/TR/css-text-4/#ref-for-writing-system-korean", "https://www.w3.org/TR/css-text-4/#ref-for-writing-system-japanese%E2%91%A2", "https://www.w3.org/TR/css-text-4/#clustered-scripts", + "https://www.w3.org/TR/css-text-4/#infopanel-for-clustered-scripts", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-clustered-scripts", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-script%E2%91%A3", "https://www.w3.org/TR/css-text-4/#cursive-script", + "https://www.w3.org/TR/css-text-4/#infopanel-for-cursive-script", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-cursive-script", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-unicode-script%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-cursive-script%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A5", "https://www.w3.org/TR/css-text-4/#character-properties", "https://www.w3.org/TR/css-text-4/#unicode-east-asian-width", + "https://www.w3.org/TR/css-text-4/#infopanel-for-unicode-east-asian-width", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-unicode-east-asian-width", "https://www.w3.org/TR/css-text-4/#unicode-general-category", + "https://www.w3.org/TR/css-text-4/#infopanel-for-unicode-general-category", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-unicode-general-category", "https://www.w3.org/TR/css-text-4/#unicode-script", + "https://www.w3.org/TR/css-text-4/#infopanel-for-unicode-script", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-unicode-script", "https://www.w3.org/TR/css-text-4/#unicode-vertical-orientation", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-typographic-character-unit%E2%91%A4%E2%91%A7", @@ -1674,7 +2009,7 @@ "https://www.w3.org/TR/css-text-4/#ref-for-grapheme-cluster%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-grapheme-cluster%E2%91%A5", "https://www.w3.org/TR/css-text-4/#script-tagging", - "https://www.w3.org/TR/css-text-4/#ref-for-document-language%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-doclanguage%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-text-4/#example-a2325afd", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%91%A0", @@ -1684,18 +2019,24 @@ "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A6", "https://www.w3.org/TR/css-text-4/#writing-system-chinese", + "https://www.w3.org/TR/css-text-4/#infopanel-for-writing-system-chinese", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-writing-system-chinese", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#writing-system-japanese", + "https://www.w3.org/TR/css-text-4/#infopanel-for-writing-system-japanese", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-writing-system-japanese", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-text-4/#writing-system-korean", + "https://www.w3.org/TR/css-text-4/#infopanel-for-writing-system-korean", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-writing-system-korean", "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#writing-system-known", "https://www.w3.org/TR/css-text-4/#ref-for-content-language%E2%91%A1%E2%91%A7", @@ -1704,47 +2045,53 @@ "https://www.w3.org/TR/css-text-4/#ref-for-content-writing-system%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-text-4/#small-kana", "https://www.w3.org/TR/css-text-4/#kana-small", + "https://www.w3.org/TR/css-text-4/#infopanel-for-kana-small", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-kana-small", "https://www.w3.org/TR/css-text-4/#kana-full-size", + "https://www.w3.org/TR/css-text-4/#infopanel-for-kana-full-size", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-kana-full-size", "https://www.w3.org/TR/css-text-4/#priv-sec", "https://www.w3.org/TR/css-text-4/#acknowledgements", "https://www.w3.org/TR/css-text-4/#changes", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-break-spaces%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-space-first%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-hanging-punctuation%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-no-compress", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A8", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A6", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-ruby", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-trim-end", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-allow-end", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-ideograph-alpha", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-spacing-ideograph-numeric", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-align%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-align-start%E2%91%A5", "https://www.w3.org/TR/css-text-4/#ref-for-root-element%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-distribute%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-css-legacy-value-alias%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-justify-inter-character%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A5", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-space-trim-discard-inner", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-trim-discard-inner", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-letter-spacing%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-font-size%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-the-textarea-element", "https://www.w3.org/TR/css-text-4/#changes-L3", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-detection%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-spaces", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-preserve-spaces%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-white-space-collapse-discard", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A6", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-balance%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-stable%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-valdef-text-wrap-pretty%E2%91%A1", @@ -1772,101 +2119,300 @@ "https://www.w3.org/TR/css-text-4/#index", "https://www.w3.org/TR/css-text-4/#index-defined-here", "https://www.w3.org/TR/css-text-4/#index-defined-elsewhere", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-border", - "https://www.w3.org/TR/css-text-4/#term-for-border", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-margin", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-padding", - "https://www.w3.org/TR/css-text-4/#term-for-fragmentation-context", - "https://www.w3.org/TR/css-text-4/#term-for-declared-value", - "https://www.w3.org/TR/css-text-4/#term-for-valdef-all-inherit", - "https://www.w3.org/TR/css-text-4/#term-for-inherited-value", - "https://www.w3.org/TR/css-text-4/#term-for-initial-value", - "https://www.w3.org/TR/css-text-4/#term-for-legacy-name-alias", - "https://www.w3.org/TR/css-text-4/#term-for-css-legacy-value-alias", - "https://www.w3.org/TR/css-text-4/#term-for-shorthand-property", - "https://www.w3.org/TR/css-text-4/#term-for-longhand", - "https://www.w3.org/TR/css-text-4/#term-for-used-value", - "https://www.w3.org/TR/css-text-4/#term-for-cascade-origin-user", - "https://www.w3.org/TR/css-text-4/#term-for-cascade-origin-ua", - "https://www.w3.org/TR/css-text-4/#term-for-at-ruledef-supports", - "https://www.w3.org/TR/css-text-4/#term-for-atomic-inline", - "https://www.w3.org/TR/css-text-4/#term-for-block", - "https://www.w3.org/TR/css-text-4/#term-for-block-box", - "https://www.w3.org/TR/css-text-4/#term-for-block-container", - "https://www.w3.org/TR/css-text-4/#term-for-block-formatting-context", - "https://www.w3.org/TR/css-text-4/#term-for-block-level", - "https://www.w3.org/TR/css-text-4/#term-for-containing-block", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-display", - "https://www.w3.org/TR/css-text-4/#term-for-in-flow", - "https://www.w3.org/TR/css-text-4/#term-for-independent-formatting-context", - "https://www.w3.org/TR/css-text-4/#term-for-inline-box", - "https://www.w3.org/TR/css-text-4/#term-for-inline-formatting-context", - "https://www.w3.org/TR/css-text-4/#term-for-inline-level", - "https://www.w3.org/TR/css-text-4/#term-for-out-of-flow", - "https://www.w3.org/TR/css-text-4/#term-for-text-run", - "https://www.w3.org/TR/css-text-4/#term-for-root-element", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-font-feature-settings", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-font-size", - "https://www.w3.org/TR/css-text-4/#term-for-valdef-alignment-baseline-baseline", - "https://www.w3.org/TR/css-text-4/#term-for-line-box", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-vertical-align", - "https://www.w3.org/TR/css-text-4/#term-for-ink-overflow", - "https://www.w3.org/TR/css-text-4/#term-for-scrollable-overflow", - "https://www.w3.org/TR/css-text-4/#term-for-first-formatted-line", - "https://www.w3.org/TR/css-text-4/#term-for-bopomofo-characters", - "https://www.w3.org/TR/css-text-4/#term-for-ruby", - "https://www.w3.org/TR/css-text-4/#term-for-ruby-annotation-box", - "https://www.w3.org/TR/css-text-4/#term-for-inner-size", - "https://www.w3.org/TR/css-text-4/#term-for-intrinsic-size", - "https://www.w3.org/TR/css-text-4/#term-for-intrinsic-size-contribution", - "https://www.w3.org/TR/css-text-4/#term-for-intrinsic-sizing", - "https://www.w3.org/TR/css-text-4/#term-for-max-content", - "https://www.w3.org/TR/css-text-4/#term-for-min-content", - "https://www.w3.org/TR/css-text-4/#term-for-comb-all", - "https://www.w3.org/TR/css-text-4/#term-for-typedef-ident", - "https://www.w3.org/TR/css-text-4/#term-for-integer-value", - "https://www.w3.org/TR/css-text-4/#term-for-typedef-length-percentage", - "https://www.w3.org/TR/css-text-4/#term-for-length-value", - "https://www.w3.org/TR/css-text-4/#term-for-number-value", - "https://www.w3.org/TR/css-text-4/#term-for-percentage-value", - "https://www.w3.org/TR/css-text-4/#term-for-string-value", - "https://www.w3.org/TR/css-text-4/#term-for-mult-opt", - "https://www.w3.org/TR/css-text-4/#term-for-ch", - "https://www.w3.org/TR/css-text-4/#term-for-css-wide-keywords", - "https://www.w3.org/TR/css-text-4/#term-for-em", - "https://www.w3.org/TR/css-text-4/#term-for-mult-num-range", - "https://www.w3.org/TR/css-text-4/#term-for-comb-one", - "https://www.w3.org/TR/css-text-4/#term-for-comb-any", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-direction", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-unicode-bidi", - "https://www.w3.org/TR/css-text-4/#term-for-bidi-paragraph", - "https://www.w3.org/TR/css-text-4/#term-for-bidi-isolate", - "https://www.w3.org/TR/css-text-4/#term-for-end", - "https://www.w3.org/TR/css-text-4/#term-for-inline-base-direction", - "https://www.w3.org/TR/css-text-4/#term-for-inline-end", - "https://www.w3.org/TR/css-text-4/#term-for-inline-start", - "https://www.w3.org/TR/css-text-4/#term-for-inline-axis", - "https://www.w3.org/TR/css-text-4/#term-for-inline-size", - "https://www.w3.org/TR/css-text-4/#term-for-line-left", - "https://www.w3.org/TR/css-text-4/#term-for-line-right", - "https://www.w3.org/TR/css-text-4/#term-for-logical-width", - "https://www.w3.org/TR/css-text-4/#term-for-start", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-text-combine-upright", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-text-orientation", - "https://www.w3.org/TR/css-text-4/#term-for-valdef-text-orientation-upright", - "https://www.w3.org/TR/css-text-4/#term-for-propdef-writing-mode", - "https://www.w3.org/TR/css-text-4/#term-for-flex-item", - "https://www.w3.org/TR/css-text-4/#term-for-flex-line", - "https://www.w3.org/TR/css-text-4/#term-for-multi-line-flex-container", - "https://www.w3.org/TR/css-text-4/#term-for-dom-window-getcomputedstyle", - "https://www.w3.org/TR/css-text-4/#term-for-resolved-value", - "https://www.w3.org/TR/css-text-4/#term-for-language", - "https://www.w3.org/TR/css-text-4/#term-for-the-textarea-element", - "https://www.w3.org/TR/css-text-4/#term-for-the-wbr-element", - "https://www.w3.org/TR/css-text-4/#term-for-normalize-newlines", - "https://www.w3.org/TR/css-text-4/#term-for-lang-pseudo", - "https://www.w3.org/TR/css-text-4/#term-for-document-language", - "https://www.w3.org/TR/css-text-4/#term-for-selector", + "https://www.w3.org/TR/css-text-4/#51b162a623e23582947ab4ec6272f41c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-51b162a623e23582947ab4ec6272f41c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-51b162a623e23582947ab4ec6272f41c", + "https://www.w3.org/TR/css-text-4/#bfc1abf929ff969391f2eb73aa08ce87", + "https://www.w3.org/TR/css-text-4/#infopanel-for-bfc1abf929ff969391f2eb73aa08ce87", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-bfc1abf929ff969391f2eb73aa08ce87", + "https://www.w3.org/TR/css-text-4/#57e3591fd517efc2ecda2142299286c0", + "https://www.w3.org/TR/css-text-4/#infopanel-for-57e3591fd517efc2ecda2142299286c0", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-57e3591fd517efc2ecda2142299286c0", + "https://www.w3.org/TR/css-text-4/#947c191f15d83b5ff7f318228347e580", + "https://www.w3.org/TR/css-text-4/#infopanel-for-947c191f15d83b5ff7f318228347e580", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-947c191f15d83b5ff7f318228347e580", + "https://www.w3.org/TR/css-text-4/#fa79c838f206d672c2f1ccc2592358f4", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fa79c838f206d672c2f1ccc2592358f4", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fa79c838f206d672c2f1ccc2592358f4", + "https://www.w3.org/TR/css-text-4/#1efcd5be16264bfa9c328caab0903247", + "https://www.w3.org/TR/css-text-4/#infopanel-for-1efcd5be16264bfa9c328caab0903247", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-1efcd5be16264bfa9c328caab0903247", + "https://www.w3.org/TR/css-text-4/#7ff67c9bbaa541168ee496fd5c8929c3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-7ff67c9bbaa541168ee496fd5c8929c3", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-7ff67c9bbaa541168ee496fd5c8929c3", + "https://www.w3.org/TR/css-text-4/#36a728ca8424edfd9e8c29de9252d352", + "https://www.w3.org/TR/css-text-4/#infopanel-for-36a728ca8424edfd9e8c29de9252d352", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-36a728ca8424edfd9e8c29de9252d352", + "https://www.w3.org/TR/css-text-4/#67fa5e7c53e990719ab99a14d13b4431", + "https://www.w3.org/TR/css-text-4/#infopanel-for-67fa5e7c53e990719ab99a14d13b4431", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-67fa5e7c53e990719ab99a14d13b4431", + "https://www.w3.org/TR/css-text-4/#a104b5d49486c4edbb91dbf84f312df7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a104b5d49486c4edbb91dbf84f312df7", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a104b5d49486c4edbb91dbf84f312df7", + "https://www.w3.org/TR/css-text-4/#0c157cdff08ea7cff590dd2460c9a68a", + "https://www.w3.org/TR/css-text-4/#infopanel-for-0c157cdff08ea7cff590dd2460c9a68a", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-0c157cdff08ea7cff590dd2460c9a68a", + "https://www.w3.org/TR/css-text-4/#e62ff53732093c43d981a2ea15a0521d", + "https://www.w3.org/TR/css-text-4/#infopanel-for-e62ff53732093c43d981a2ea15a0521d", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-e62ff53732093c43d981a2ea15a0521d", + "https://www.w3.org/TR/css-text-4/#d3ed6d40c6255374ff59a99d0e30897e", + "https://www.w3.org/TR/css-text-4/#infopanel-for-d3ed6d40c6255374ff59a99d0e30897e", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-d3ed6d40c6255374ff59a99d0e30897e", + "https://www.w3.org/TR/css-text-4/#ebb5aebd0030b6c03607ef6bc1dcc94f", + "https://www.w3.org/TR/css-text-4/#infopanel-for-ebb5aebd0030b6c03607ef6bc1dcc94f", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-ebb5aebd0030b6c03607ef6bc1dcc94f", + "https://www.w3.org/TR/css-text-4/#a9dc3c2ac89e174fed8732b398103b5c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a9dc3c2ac89e174fed8732b398103b5c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a9dc3c2ac89e174fed8732b398103b5c", + "https://www.w3.org/TR/css-text-4/#e08139f9e0466644139009b37a4c9853", + "https://www.w3.org/TR/css-text-4/#infopanel-for-e08139f9e0466644139009b37a4c9853", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-e08139f9e0466644139009b37a4c9853", + "https://www.w3.org/TR/css-text-4/#cb66494f3a4cee0f2e0deddded81a7b8", + "https://www.w3.org/TR/css-text-4/#infopanel-for-cb66494f3a4cee0f2e0deddded81a7b8", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-cb66494f3a4cee0f2e0deddded81a7b8", + "https://www.w3.org/TR/css-text-4/#32cd80b094d422dd853e23ed179848e5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-32cd80b094d422dd853e23ed179848e5", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-32cd80b094d422dd853e23ed179848e5", + "https://www.w3.org/TR/css-text-4/#df398c29dd589da8c220567840c5bc53", + "https://www.w3.org/TR/css-text-4/#infopanel-for-df398c29dd589da8c220567840c5bc53", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-df398c29dd589da8c220567840c5bc53", + "https://www.w3.org/TR/css-text-4/#36ea5e658d67fe9642ef6857f39cc653", + "https://www.w3.org/TR/css-text-4/#infopanel-for-36ea5e658d67fe9642ef6857f39cc653", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-36ea5e658d67fe9642ef6857f39cc653", + "https://www.w3.org/TR/css-text-4/#0c2f1794e011349d7cb31f8e4ef08054", + "https://www.w3.org/TR/css-text-4/#infopanel-for-0c2f1794e011349d7cb31f8e4ef08054", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-0c2f1794e011349d7cb31f8e4ef08054", + "https://www.w3.org/TR/css-text-4/#bdf9a1fb6af9ad83e49e49648267e3af", + "https://www.w3.org/TR/css-text-4/#infopanel-for-bdf9a1fb6af9ad83e49e49648267e3af", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-bdf9a1fb6af9ad83e49e49648267e3af", + "https://www.w3.org/TR/css-text-4/#254ec32a13d25e8a8f33fe1238cd594f", + "https://www.w3.org/TR/css-text-4/#infopanel-for-254ec32a13d25e8a8f33fe1238cd594f", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-254ec32a13d25e8a8f33fe1238cd594f", + "https://www.w3.org/TR/css-text-4/#7761cc7498b333ea8d6ffc090bed949b", + "https://www.w3.org/TR/css-text-4/#infopanel-for-7761cc7498b333ea8d6ffc090bed949b", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-7761cc7498b333ea8d6ffc090bed949b", + "https://www.w3.org/TR/css-text-4/#2a9eb2c678be6b91741f4ef0524a4812", + "https://www.w3.org/TR/css-text-4/#infopanel-for-2a9eb2c678be6b91741f4ef0524a4812", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-2a9eb2c678be6b91741f4ef0524a4812", + "https://www.w3.org/TR/css-text-4/#f2360507b40470f21ce55ef1c7a0fbc6", + "https://www.w3.org/TR/css-text-4/#infopanel-for-f2360507b40470f21ce55ef1c7a0fbc6", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-f2360507b40470f21ce55ef1c7a0fbc6", + "https://www.w3.org/TR/css-text-4/#c8e848d69f1d36d0ea5c2c1042743bca", + "https://www.w3.org/TR/css-text-4/#infopanel-for-c8e848d69f1d36d0ea5c2c1042743bca", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-c8e848d69f1d36d0ea5c2c1042743bca", + "https://www.w3.org/TR/css-text-4/#c424b95f45bdcfd08e8244edd346105a", + "https://www.w3.org/TR/css-text-4/#infopanel-for-c424b95f45bdcfd08e8244edd346105a", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-c424b95f45bdcfd08e8244edd346105a", + "https://www.w3.org/TR/css-text-4/#799485447ddaac5c040f5b3812287b12", + "https://www.w3.org/TR/css-text-4/#infopanel-for-799485447ddaac5c040f5b3812287b12", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-799485447ddaac5c040f5b3812287b12", + "https://www.w3.org/TR/css-text-4/#ae7077cf3492e44efca04f644b72867c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-ae7077cf3492e44efca04f644b72867c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-ae7077cf3492e44efca04f644b72867c", + "https://www.w3.org/TR/css-text-4/#82d52a2703e015ede21207c06c8c95d1", + "https://www.w3.org/TR/css-text-4/#infopanel-for-82d52a2703e015ede21207c06c8c95d1", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-82d52a2703e015ede21207c06c8c95d1", + "https://www.w3.org/TR/css-text-4/#8a31469ab15aeb19787e8ff9d4464b16", + "https://www.w3.org/TR/css-text-4/#infopanel-for-8a31469ab15aeb19787e8ff9d4464b16", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-8a31469ab15aeb19787e8ff9d4464b16", + "https://www.w3.org/TR/css-text-4/#90e7c0524b37ee0ca80ef784d6d4686c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-90e7c0524b37ee0ca80ef784d6d4686c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-90e7c0524b37ee0ca80ef784d6d4686c", + "https://www.w3.org/TR/css-text-4/#b1197811fc71a7098fc3b7b90ce13f63", + "https://www.w3.org/TR/css-text-4/#infopanel-for-b1197811fc71a7098fc3b7b90ce13f63", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-b1197811fc71a7098fc3b7b90ce13f63", + "https://www.w3.org/TR/css-text-4/#32f82dba692493bbececee9dbce1580b", + "https://www.w3.org/TR/css-text-4/#infopanel-for-32f82dba692493bbececee9dbce1580b", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-32f82dba692493bbececee9dbce1580b", + "https://www.w3.org/TR/css-text-4/#cdf3e67c50d7403bc81e1deab67ce369", + "https://www.w3.org/TR/css-text-4/#infopanel-for-cdf3e67c50d7403bc81e1deab67ce369", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-cdf3e67c50d7403bc81e1deab67ce369", + "https://www.w3.org/TR/css-text-4/#88486f72e7251071d9ceb236066a3abe", + "https://www.w3.org/TR/css-text-4/#infopanel-for-88486f72e7251071d9ceb236066a3abe", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-88486f72e7251071d9ceb236066a3abe", + "https://www.w3.org/TR/css-text-4/#704b1b61bfe6ddf329c10f5b22ed1d5f", + "https://www.w3.org/TR/css-text-4/#infopanel-for-704b1b61bfe6ddf329c10f5b22ed1d5f", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-704b1b61bfe6ddf329c10f5b22ed1d5f", + "https://www.w3.org/TR/css-text-4/#215fea71d540b6ce9abc84c6e08ec55d", + "https://www.w3.org/TR/css-text-4/#infopanel-for-215fea71d540b6ce9abc84c6e08ec55d", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-215fea71d540b6ce9abc84c6e08ec55d", + "https://www.w3.org/TR/css-text-4/#58a68b9f930c99361a95abb4a244581a", + "https://www.w3.org/TR/css-text-4/#infopanel-for-58a68b9f930c99361a95abb4a244581a", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-58a68b9f930c99361a95abb4a244581a", + "https://www.w3.org/TR/css-text-4/#c189993e8a14079bd46dfcd1ebec5ab8", + "https://www.w3.org/TR/css-text-4/#infopanel-for-c189993e8a14079bd46dfcd1ebec5ab8", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-c189993e8a14079bd46dfcd1ebec5ab8", + "https://www.w3.org/TR/css-text-4/#5aba1a45e0b0ec9a8a076b772954132c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-5aba1a45e0b0ec9a8a076b772954132c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-5aba1a45e0b0ec9a8a076b772954132c", + "https://www.w3.org/TR/css-text-4/#cf35c9ca6de1e1104769b72c1c0d5868", + "https://www.w3.org/TR/css-text-4/#infopanel-for-cf35c9ca6de1e1104769b72c1c0d5868", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-cf35c9ca6de1e1104769b72c1c0d5868", + "https://www.w3.org/TR/css-text-4/#ab303323c134977e93f9bcd12d6540d4", + "https://www.w3.org/TR/css-text-4/#infopanel-for-ab303323c134977e93f9bcd12d6540d4", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-ab303323c134977e93f9bcd12d6540d4", + "https://www.w3.org/TR/css-text-4/#9fbbe380b76170639c849616b088640c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-9fbbe380b76170639c849616b088640c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-9fbbe380b76170639c849616b088640c", + "https://www.w3.org/TR/css-text-4/#a5a815a4bdf481e16ef3a7579c4e79db", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a5a815a4bdf481e16ef3a7579c4e79db", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a5a815a4bdf481e16ef3a7579c4e79db", + "https://www.w3.org/TR/css-text-4/#3eadb03256ffd22f579347a8fb8c708e", + "https://www.w3.org/TR/css-text-4/#infopanel-for-3eadb03256ffd22f579347a8fb8c708e", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-3eadb03256ffd22f579347a8fb8c708e", + "https://www.w3.org/TR/css-text-4/#d286fbd747f25f2253af8a351a101bdf", + "https://www.w3.org/TR/css-text-4/#infopanel-for-d286fbd747f25f2253af8a351a101bdf", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-d286fbd747f25f2253af8a351a101bdf", + "https://www.w3.org/TR/css-text-4/#a3846cc17eb48b41fbb5780e53f4986c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a3846cc17eb48b41fbb5780e53f4986c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a3846cc17eb48b41fbb5780e53f4986c", + "https://www.w3.org/TR/css-text-4/#a619dcb616ee563b27fa13556ab2e779", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a619dcb616ee563b27fa13556ab2e779", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a619dcb616ee563b27fa13556ab2e779", + "https://www.w3.org/TR/css-text-4/#823e1062bdc07d17019cf6013294eb77", + "https://www.w3.org/TR/css-text-4/#infopanel-for-823e1062bdc07d17019cf6013294eb77", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-823e1062bdc07d17019cf6013294eb77", + "https://www.w3.org/TR/css-text-4/#6e3b0a4b90c236036fe4558d99fb1ddd", + "https://www.w3.org/TR/css-text-4/#infopanel-for-6e3b0a4b90c236036fe4558d99fb1ddd", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-6e3b0a4b90c236036fe4558d99fb1ddd", + "https://www.w3.org/TR/css-text-4/#833f34a5b064c7364a18709cae65471e", + "https://www.w3.org/TR/css-text-4/#infopanel-for-833f34a5b064c7364a18709cae65471e", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-833f34a5b064c7364a18709cae65471e", + "https://www.w3.org/TR/css-text-4/#809886eed649697b04ac9d4bd1192239", + "https://www.w3.org/TR/css-text-4/#infopanel-for-809886eed649697b04ac9d4bd1192239", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-809886eed649697b04ac9d4bd1192239", + "https://www.w3.org/TR/css-text-4/#9009e20f4b291166e3ae78cb3f101017", + "https://www.w3.org/TR/css-text-4/#infopanel-for-9009e20f4b291166e3ae78cb3f101017", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-9009e20f4b291166e3ae78cb3f101017", + "https://www.w3.org/TR/css-text-4/#96fea3339ea7894129c671e62b12c766", + "https://www.w3.org/TR/css-text-4/#infopanel-for-96fea3339ea7894129c671e62b12c766", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-96fea3339ea7894129c671e62b12c766", + "https://www.w3.org/TR/css-text-4/#82594f1f3a6c873aa8ac6336eb6bf662", + "https://www.w3.org/TR/css-text-4/#infopanel-for-82594f1f3a6c873aa8ac6336eb6bf662", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-82594f1f3a6c873aa8ac6336eb6bf662", + "https://www.w3.org/TR/css-text-4/#53a01a6894b4d2d7b091ae1a56a13251", + "https://www.w3.org/TR/css-text-4/#infopanel-for-53a01a6894b4d2d7b091ae1a56a13251", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-53a01a6894b4d2d7b091ae1a56a13251", + "https://www.w3.org/TR/css-text-4/#85d5ec3b90b3bb54a006449512e66508", + "https://www.w3.org/TR/css-text-4/#infopanel-for-85d5ec3b90b3bb54a006449512e66508", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-85d5ec3b90b3bb54a006449512e66508", + "https://www.w3.org/TR/css-text-4/#d38ad2dc5194c097d2b903765aca9070", + "https://www.w3.org/TR/css-text-4/#infopanel-for-d38ad2dc5194c097d2b903765aca9070", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-d38ad2dc5194c097d2b903765aca9070", + "https://www.w3.org/TR/css-text-4/#19ccb6e7dc9e8cb62749742d224f6b3e", + "https://www.w3.org/TR/css-text-4/#infopanel-for-19ccb6e7dc9e8cb62749742d224f6b3e", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-19ccb6e7dc9e8cb62749742d224f6b3e", + "https://www.w3.org/TR/css-text-4/#4373bc69f46aedba387d3d1565e1ae01", + "https://www.w3.org/TR/css-text-4/#infopanel-for-4373bc69f46aedba387d3d1565e1ae01", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-4373bc69f46aedba387d3d1565e1ae01", + "https://www.w3.org/TR/css-text-4/#f014258978db0b5cb28d306e0a9068b1", + "https://www.w3.org/TR/css-text-4/#infopanel-for-f014258978db0b5cb28d306e0a9068b1", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-f014258978db0b5cb28d306e0a9068b1", + "https://www.w3.org/TR/css-text-4/#7cc54276efc300dfe516ecc951e742e8", + "https://www.w3.org/TR/css-text-4/#infopanel-for-7cc54276efc300dfe516ecc951e742e8", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-7cc54276efc300dfe516ecc951e742e8", + "https://www.w3.org/TR/css-text-4/#a776a1df2063fe697f6c7ee6b178b262", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a776a1df2063fe697f6c7ee6b178b262", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a776a1df2063fe697f6c7ee6b178b262", + "https://www.w3.org/TR/css-text-4/#63f2f251f3aa0bf36028f290b3f6aba0", + "https://www.w3.org/TR/css-text-4/#infopanel-for-63f2f251f3aa0bf36028f290b3f6aba0", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-63f2f251f3aa0bf36028f290b3f6aba0", + "https://www.w3.org/TR/css-text-4/#2421c65c76a70f9151ba02cfcf7cc94f", + "https://www.w3.org/TR/css-text-4/#infopanel-for-2421c65c76a70f9151ba02cfcf7cc94f", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-2421c65c76a70f9151ba02cfcf7cc94f", + "https://www.w3.org/TR/css-text-4/#bf9d91fe5b45ff279aca6f1124e0b86a", + "https://www.w3.org/TR/css-text-4/#infopanel-for-bf9d91fe5b45ff279aca6f1124e0b86a", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-bf9d91fe5b45ff279aca6f1124e0b86a", + "https://www.w3.org/TR/css-text-4/#6e0e18bd71b5a60176f467f51b818703", + "https://www.w3.org/TR/css-text-4/#infopanel-for-6e0e18bd71b5a60176f467f51b818703", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-6e0e18bd71b5a60176f467f51b818703", + "https://www.w3.org/TR/css-text-4/#c52f056f4819ee0ff3fddec249faa6ba", + "https://www.w3.org/TR/css-text-4/#infopanel-for-c52f056f4819ee0ff3fddec249faa6ba", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-c52f056f4819ee0ff3fddec249faa6ba", + "https://www.w3.org/TR/css-text-4/#99faddd6657778f63bf58ee5e877afaf", + "https://www.w3.org/TR/css-text-4/#infopanel-for-99faddd6657778f63bf58ee5e877afaf", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-99faddd6657778f63bf58ee5e877afaf", + "https://www.w3.org/TR/css-text-4/#91ff9a963abadb76423622803dde3de9", + "https://www.w3.org/TR/css-text-4/#infopanel-for-91ff9a963abadb76423622803dde3de9", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-91ff9a963abadb76423622803dde3de9", + "https://www.w3.org/TR/css-text-4/#aece61e216ce752a3be91beec788cf8d", + "https://www.w3.org/TR/css-text-4/#infopanel-for-aece61e216ce752a3be91beec788cf8d", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-aece61e216ce752a3be91beec788cf8d", + "https://www.w3.org/TR/css-text-4/#662ca37ac888d77acecc36596c40f92c", + "https://www.w3.org/TR/css-text-4/#infopanel-for-662ca37ac888d77acecc36596c40f92c", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-662ca37ac888d77acecc36596c40f92c", + "https://www.w3.org/TR/css-text-4/#bfcf53e3d9a2678e8a8393bcc7413672", + "https://www.w3.org/TR/css-text-4/#infopanel-for-bfcf53e3d9a2678e8a8393bcc7413672", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-bfcf53e3d9a2678e8a8393bcc7413672", + "https://www.w3.org/TR/css-text-4/#1d26a97beb2cacdc0785852289645d47", + "https://www.w3.org/TR/css-text-4/#infopanel-for-1d26a97beb2cacdc0785852289645d47", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-1d26a97beb2cacdc0785852289645d47", + "https://www.w3.org/TR/css-text-4/#83bfa05be59b970b23ea0cf31b207133", + "https://www.w3.org/TR/css-text-4/#infopanel-for-83bfa05be59b970b23ea0cf31b207133", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-83bfa05be59b970b23ea0cf31b207133", + "https://www.w3.org/TR/css-text-4/#e13f4a4e17d9670315a435b9a4c20d88", + "https://www.w3.org/TR/css-text-4/#infopanel-for-e13f4a4e17d9670315a435b9a4c20d88", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-e13f4a4e17d9670315a435b9a4c20d88", + "https://www.w3.org/TR/css-text-4/#a1a277fb81ad405dbe65dd4866279494", + "https://www.w3.org/TR/css-text-4/#infopanel-for-a1a277fb81ad405dbe65dd4866279494", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-a1a277fb81ad405dbe65dd4866279494", + "https://www.w3.org/TR/css-text-4/#234a5e1f36877408dd07ac82cc3e38e5", + "https://www.w3.org/TR/css-text-4/#infopanel-for-234a5e1f36877408dd07ac82cc3e38e5", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-234a5e1f36877408dd07ac82cc3e38e5", + "https://www.w3.org/TR/css-text-4/#4b2570eb4691bb17efa60aa22f70af15", + "https://www.w3.org/TR/css-text-4/#infopanel-for-4b2570eb4691bb17efa60aa22f70af15", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-4b2570eb4691bb17efa60aa22f70af15", + "https://www.w3.org/TR/css-text-4/#0940d51e4db437ced53d2784d32f8110", + "https://www.w3.org/TR/css-text-4/#infopanel-for-0940d51e4db437ced53d2784d32f8110", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-0940d51e4db437ced53d2784d32f8110", + "https://www.w3.org/TR/css-text-4/#6ae53b29c293fa8bd7db4c17596bc818", + "https://www.w3.org/TR/css-text-4/#infopanel-for-6ae53b29c293fa8bd7db4c17596bc818", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-6ae53b29c293fa8bd7db4c17596bc818", + "https://www.w3.org/TR/css-text-4/#00a4e739523ba72a2832db68dce549c3", + "https://www.w3.org/TR/css-text-4/#infopanel-for-00a4e739523ba72a2832db68dce549c3", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-00a4e739523ba72a2832db68dce549c3", + "https://www.w3.org/TR/css-text-4/#d5a9157db782bfd76340602de1211139", + "https://www.w3.org/TR/css-text-4/#infopanel-for-d5a9157db782bfd76340602de1211139", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-d5a9157db782bfd76340602de1211139", + "https://www.w3.org/TR/css-text-4/#4f5309b3f892fc5682a1fd4ec2850d8d", + "https://www.w3.org/TR/css-text-4/#infopanel-for-4f5309b3f892fc5682a1fd4ec2850d8d", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-4f5309b3f892fc5682a1fd4ec2850d8d", + "https://www.w3.org/TR/css-text-4/#e8b694bf098bda27f0f882f24e2d5034", + "https://www.w3.org/TR/css-text-4/#infopanel-for-e8b694bf098bda27f0f882f24e2d5034", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-e8b694bf098bda27f0f882f24e2d5034", + "https://www.w3.org/TR/css-text-4/#5f9656b21fffcd5c6de5818d30721782", + "https://www.w3.org/TR/css-text-4/#infopanel-for-5f9656b21fffcd5c6de5818d30721782", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-5f9656b21fffcd5c6de5818d30721782", + "https://www.w3.org/TR/css-text-4/#3b53787036c4b6560ec1b3eb289f4daf", + "https://www.w3.org/TR/css-text-4/#infopanel-for-3b53787036c4b6560ec1b3eb289f4daf", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-3b53787036c4b6560ec1b3eb289f4daf", + "https://www.w3.org/TR/css-text-4/#fc5d233e807e33f01bd002b5a8fa13eb", + "https://www.w3.org/TR/css-text-4/#infopanel-for-fc5d233e807e33f01bd002b5a8fa13eb", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-fc5d233e807e33f01bd002b5a8fa13eb", + "https://www.w3.org/TR/css-text-4/#cba4e4c24af6200cb8f4798a079f6374", + "https://www.w3.org/TR/css-text-4/#infopanel-for-cba4e4c24af6200cb8f4798a079f6374", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-cba4e4c24af6200cb8f4798a079f6374", + "https://www.w3.org/TR/css-text-4/#25ee93fa4044bf87337a78f8541d4222", + "https://www.w3.org/TR/css-text-4/#infopanel-for-25ee93fa4044bf87337a78f8541d4222", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-25ee93fa4044bf87337a78f8541d4222", + "https://www.w3.org/TR/css-text-4/#726a16249061363ef85fbdad67a6e959", + "https://www.w3.org/TR/css-text-4/#infopanel-for-726a16249061363ef85fbdad67a6e959", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-726a16249061363ef85fbdad67a6e959", + "https://www.w3.org/TR/css-text-4/#c82ecefb5866f61611639536f749c1d7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-c82ecefb5866f61611639536f749c1d7", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-c82ecefb5866f61611639536f749c1d7", + "https://www.w3.org/TR/css-text-4/#e9192a678af819ace405c601adf0ac6e", + "https://www.w3.org/TR/css-text-4/#infopanel-for-e9192a678af819ace405c601adf0ac6e", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-e9192a678af819ace405c601adf0ac6e", + "https://www.w3.org/TR/css-text-4/#e571bd12231c39f3ee70838ac64a70c2", + "https://www.w3.org/TR/css-text-4/#infopanel-for-e571bd12231c39f3ee70838ac64a70c2", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-e571bd12231c39f3ee70838ac64a70c2", + "https://www.w3.org/TR/css-text-4/#ae46eb3d46d3737cf6033a18be4ec325", + "https://www.w3.org/TR/css-text-4/#infopanel-for-ae46eb3d46d3737cf6033a18be4ec325", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-ae46eb3d46d3737cf6033a18be4ec325", + "https://www.w3.org/TR/css-text-4/#377468720bd34f17bfbb977eddca9eb7", + "https://www.w3.org/TR/css-text-4/#infopanel-for-377468720bd34f17bfbb977eddca9eb7", + "https://www.w3.org/TR/css-text-4/#infopaneltitle-for-377468720bd34f17bfbb977eddca9eb7", "https://www.w3.org/TR/css-text-4/#references", "https://www.w3.org/TR/css-text-4/#normative", "https://www.w3.org/TR/css-text-4/#biblio-css-backgrounds-3", @@ -1874,7 +2420,6 @@ "https://www.w3.org/TR/css-text-4/#biblio-css-break-4", "https://www.w3.org/TR/css-text-4/#biblio-css-cascade-5", "https://www.w3.org/TR/css-text-4/#biblio-css-display-3", - "https://www.w3.org/TR/css-text-4/#biblio-css-display-4", "https://www.w3.org/TR/css-text-4/#biblio-css-fonts-3", "https://www.w3.org/TR/css-text-4/#biblio-css-fonts-4", "https://www.w3.org/TR/css-text-4/#biblio-css-inline-3", @@ -1882,6 +2427,8 @@ "https://www.w3.org/TR/css-text-4/#biblio-css-pseudo-4", "https://www.w3.org/TR/css-text-4/#biblio-css-ruby-1", "https://www.w3.org/TR/css-text-4/#biblio-css-sizing-3", + "https://www.w3.org/TR/css-text-4/#biblio-css-text-3", + "https://www.w3.org/TR/css-text-4/#biblio-css-text-4", "https://www.w3.org/TR/css-text-4/#biblio-css-values-3", "https://www.w3.org/TR/css-text-4/#biblio-css-values-4", "https://www.w3.org/TR/css-text-4/#biblio-css-writing-modes-3", @@ -1892,7 +2439,6 @@ "https://www.w3.org/TR/css-text-4/#biblio-cssom-1", "https://www.w3.org/TR/css-text-4/#biblio-html", "https://www.w3.org/TR/css-text-4/#biblio-rfc2119", - "https://www.w3.org/TR/css-text-4/#biblio-selectors-4", "https://www.w3.org/TR/css-text-4/#biblio-uax11", "https://www.w3.org/TR/css-text-4/#biblio-uax14", "https://www.w3.org/TR/css-text-4/#biblio-uax24", @@ -1905,9 +2451,9 @@ "https://www.w3.org/TR/css-text-4/#biblio-bcp47", "https://www.w3.org/TR/css-text-4/#biblio-clreq", "https://www.w3.org/TR/css-text-4/#biblio-css-conditional-3", - "https://www.w3.org/TR/css-text-4/#biblio-css-text-3", "https://www.w3.org/TR/css-text-4/#biblio-css-text-decor-3", "https://www.w3.org/TR/css-text-4/#biblio-dom", + "https://www.w3.org/TR/css-text-4/#biblio-i18n-glossary", "https://www.w3.org/TR/css-text-4/#biblio-ilreq", "https://www.w3.org/TR/css-text-4/#biblio-infra", "https://www.w3.org/TR/css-text-4/#biblio-iso15924", @@ -1916,6 +2462,7 @@ "https://www.w3.org/TR/css-text-4/#biblio-justify", "https://www.w3.org/TR/css-text-4/#biblio-rfc4647", "https://www.w3.org/TR/css-text-4/#biblio-rfc6919", + "https://www.w3.org/TR/css-text-4/#biblio-selectors-4", "https://www.w3.org/TR/css-text-4/#biblio-typography", "https://www.w3.org/TR/css-text-4/#biblio-xml10", "https://www.w3.org/TR/css-text-4/#biblio-zhmark", @@ -1939,15 +2486,15 @@ "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-group-align%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-indent%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-justify%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-space-trim%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing%E2%91%A7", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-spacing-trim%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-transform%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A7", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A5", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-text-wrap%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-collapse%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-white-space-trim%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-detection%E2%91%A4", - "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A3", + "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-boundary-expansion%E2%91%A4", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-break%E2%91%A1%E2%91%A2", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-spacing%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-text-4/#ref-for-propdef-word-wrap%E2%91%A1", diff --git a/tr/ids/webrtc-svc.json b/tr/ids/webrtc-svc.json index d4a036a9238a..a7366c9dce39 100644 --- a/tr/ids/webrtc-svc.json +++ b/tr/ids/webrtc-svc.json @@ -272,7 +272,6 @@ "https://www.w3.org/TR/webrtc-svc/#b-references", "https://www.w3.org/TR/webrtc-svc/#normative-references", "https://www.w3.org/TR/webrtc-svc/#b-1-normative-references", - "https://www.w3.org/TR/webrtc-svc/#bib-av1-rtp", "https://www.w3.org/TR/webrtc-svc/#bib-media-capabilities", "https://www.w3.org/TR/webrtc-svc/#bib-rfc2119", "https://www.w3.org/TR/webrtc-svc/#bib-rfc7656", @@ -283,6 +282,7 @@ "https://www.w3.org/TR/webrtc-svc/#informative-references", "https://www.w3.org/TR/webrtc-svc/#b-2-informative-references", "https://www.w3.org/TR/webrtc-svc/#bib-av1", + "https://www.w3.org/TR/webrtc-svc/#bib-av1-rtp", "https://www.w3.org/TR/webrtc-svc/#bib-rfc6190", "https://www.w3.org/TR/webrtc-svc/#bib-rfc6386", "https://www.w3.org/TR/webrtc-svc/#bib-rfc7741", diff --git a/tr/index.json b/tr/index.json index c9567c5749e9..10fc3a82b4dd 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2023-03-29T01:33:31.908Z", + "date": "2023-03-30T01:29:03.523Z", "options": { "fallback": "webref-fallback/tr/index.json", "output": "report", @@ -269,10 +269,10 @@ ], "crawled": "https://www.w3.org/TR/appmanifest/", "crawlCacheInfo": { - "lastModified": "Wed, 25 Jan 2023 02:23:49 GMT" + "lastModified": "Wed, 29 Mar 2023 23:50:29 GMT" }, "generator": "respec", - "date": "25 January 2023", + "date": "29 March 2023", "links": "links/appmanifest.json", "refs": "refs/appmanifest.json", "dfns": "dfns/appmanifest.json", @@ -869,10 +869,10 @@ ], "crawled": "https://www.w3.org/TR/compute-pressure/", "crawlCacheInfo": { - "lastModified": "Tue, 28 Mar 2023 11:13:21 GMT" + "lastModified": "Wed, 29 Mar 2023 07:03:54 GMT" }, "generator": "respec", - "date": "28 March 2023", + "date": "29 March 2023", "links": "links/compute-pressure.json", "refs": "refs/compute-pressure.json", "idl": "idl/compute-pressure.idl", @@ -4464,10 +4464,10 @@ ], "crawled": "https://www.w3.org/TR/css-overflow-3/", "crawlCacheInfo": { - "lastModified": "Tue, 21 Mar 2023 18:46:04 GMT" + "lastModified": "Wed, 29 Mar 2023 20:20:25 GMT" }, "generator": "bikeshed", - "date": "21 March 2023", + "date": "29 March 2023", "links": "links/css-overflow-3.json", "refs": "refs/css-overflow-3.json", "css": "css/css-overflow.json", @@ -6165,10 +6165,10 @@ ], "crawled": "https://www.w3.org/TR/css-text-4/", "crawlCacheInfo": { - "lastModified": "Wed, 01 Mar 2023 02:54:17 GMT" + "lastModified": "Wed, 29 Mar 2023 19:35:59 GMT" }, "generator": "bikeshed", - "date": "1 March 2023", + "date": "29 March 2023", "links": "links/css-text-4.json", "refs": "refs/css-text-4.json", "css": "css/css-text-4.json", @@ -16803,10 +16803,10 @@ ], "crawled": "https://www.w3.org/TR/webrtc-svc/", "crawlCacheInfo": { - "lastModified": "Tue, 21 Feb 2023 16:55:31 GMT" + "lastModified": "Wed, 29 Mar 2023 20:36:32 GMT" }, "generator": "respec", - "date": "21 February 2023", + "date": "29 March 2023", "links": "links/webrtc-svc.json", "refs": "refs/webrtc-svc.json", "idl": "idl/webrtc-svc.idl", @@ -17615,10 +17615,10 @@ ], "crawled": "https://www.w3.org/TR/WGSL/", "crawlCacheInfo": { - "lastModified": "Fri, 24 Mar 2023 17:13:36 GMT" + "lastModified": "Wed, 29 Mar 2023 14:56:14 GMT" }, "generator": "bikeshed", - "date": "24 March 2023", + "date": "29 March 2023", "links": "links/WGSL.json", "refs": "refs/WGSL.json", "dfns": "dfns/WGSL.json", diff --git a/tr/links/compute-pressure.json b/tr/links/compute-pressure.json index 48e77aa31b32..9d124a24c6d3 100644 --- a/tr/links/compute-pressure.json +++ b/tr/links/compute-pressure.json @@ -96,19 +96,18 @@ "ordered-map", "map-key", "map-value", - "list-empty", "list-append", "list-remove", + "list-empty", "map-remove", "list-iterate", "map-clear", "list-clone", - "ordered-set", "map-exists", - "set-superset", "iteration-continue", "list-size", - "list-item" + "list-item", + "ordered-set" ], "specShortname": "infra" }, diff --git a/tr/links/css-overflow-3.json b/tr/links/css-overflow-3.json index 6c392919be47..898d971f003e 100644 --- a/tr/links/css-overflow-3.json +++ b/tr/links/css-overflow-3.json @@ -12,9 +12,6 @@ "specShortname": "css-logical-1" }, "https://drafts.csswg.org/css-overflow-4/": { - "anchors": [ - "webkit-line-clamp" - ], "specShortname": "css-overflow-4" }, "https://drafts.csswg.org/cssom-view-1/": { @@ -108,20 +105,6 @@ "https://www.w3.org/TR/CSS21/": { "specShortname": "CSS2" }, - "https://www.w3.org/TR/CSS21/about.html": { - "anchors": [ - "x1" - ], - "specShortname": "CSS2" - }, - "https://www.w3.org/TR/CSS21/box.html": { - "anchors": [ - "x12", - "padding-edge", - "border-edge" - ], - "specShortname": "CSS2" - }, "https://www.w3.org/TR/CSS21/conform.html": { "anchors": [ "style-sheet", @@ -136,15 +119,8 @@ ], "specShortname": "CSS2" }, - "https://www.w3.org/TR/CSS21/visufx.html": { - "anchors": [ - "propdef-clip" - ], - "specShortname": "CSS2" - }, "https://www.w3.org/TR/CSS21/visuren.html": { "anchors": [ - "line-box", "x1" ], "specShortname": "CSS2" @@ -182,7 +158,10 @@ }, "https://www.w3.org/TR/css-box-4/": { "anchors": [ + "padding-box", + "padding-edge", "typedef-visual-box", + "border-edge", "content-area", "padding" ], @@ -257,6 +236,12 @@ ], "specShortname": "css-grid-2" }, + "https://www.w3.org/TR/css-inline-3/": { + "anchors": [ + "line-box" + ], + "specShortname": "css-inline-3" + }, "https://www.w3.org/TR/css-logical-1/": { "anchors": [ "logical-property-group", @@ -265,20 +250,19 @@ "specShortname": "css-logical-1" }, "https://www.w3.org/TR/css-masking-1/": { - "specShortname": "css-masking-1" - }, - "https://www.w3.org/TR/css-overflow-3/": { "anchors": [ - "propdef-line-clamp", - "propdef-block-ellipsis", - "propdef--webkit-line-clamp" + "propdef-clip" ], - "specShortname": "css-overflow-3" + "specShortname": "css-masking-1" }, "https://www.w3.org/TR/css-overflow-4/": { "anchors": [ + "propdef-line-clamp", "propdef-max-lines", + "propdef-block-ellipsis", "sbg-ext", + "propdef--webkit-line-clamp", + "webkit-line-clamp", "propdef-continue" ], "specShortname": "css-overflow-4" diff --git a/tr/links/css-text-4.json b/tr/links/css-text-4.json index ffff2f0046d8..386333a98e86 100644 --- a/tr/links/css-text-4.json +++ b/tr/links/css-text-4.json @@ -45,12 +45,6 @@ "https://dom.spec.whatwg.org/": { "specShortname": "dom" }, - "https://drafts.csswg.org/css-display-4/": { - "anchors": [ - "root-element" - ], - "specShortname": "css-display-4" - }, "https://github.com/w3c/browser-specs/issues/8273": {}, "https://github.com/w3c/csswg-drafts/issues": {}, "https://github.com/w3c/csswg-drafts/issues/1484": {}, @@ -70,7 +64,9 @@ "https://github.com/w3c/csswg-drafts/issues/7322": {}, "https://github.com/w3c/csswg-drafts/issues/771": {}, "https://github.com/w3c/csswg-drafts/issues/779": {}, + "https://github.com/w3c/csswg-drafts/issues/8256": {}, "https://github.com/w3c/csswg-drafts/issues/8263": {}, + "https://github.com/w3c/csswg-drafts/issues/8273": {}, "https://github.com/w3c/csswg-drafts/issues/8288": {}, "https://html.spec.whatwg.org/multipage/": {}, "https://html.spec.whatwg.org/multipage/dom.html": { @@ -109,6 +105,12 @@ "https://lists.w3.org/Archives/Public/www-style/": {}, "https://lists.w3.org/Archives/Public/www-style/2016Jan/0233.html": {}, "https://rhodesmill.org/brandon/2012/one-sentence-per-line/": {}, + "https://w3c.github.io/i18n-glossary/": { + "anchors": [ + "dfn-ruby" + ], + "specShortname": "i18n-glossary" + }, "https://www.decotype.com/": {}, "https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry": {}, "https://www.rfc-editor.org/rfc/rfc4647": {}, @@ -148,6 +150,7 @@ "https://www.w3.org/TR/2019/WD-css-text-4-20191113/": {}, "https://www.w3.org/TR/2022/WD-css-text-4-20220505/": {}, "https://www.w3.org/TR/2022/WD-css-text-4-20221231/": {}, + "https://www.w3.org/TR/2023/WD-css-text-4-20230301/": {}, "https://www.w3.org/TR/CSS/": { "anchors": [ "future-proofing", @@ -161,30 +164,34 @@ "https://www.w3.org/TR/CSS21/": { "specShortname": "CSS2" }, - "https://www.w3.org/TR/CSS21//about": { + "https://www.w3.org/TR/CSS21/about.html": { "anchors": [ "property-defs" - ] - }, - "https://www.w3.org/TR/CSS21//selector": { - "anchors": [ - "first-line-pseudo" - ] - }, - "https://www.w3.org/TR/CSS21//visuren": { - "anchors": [ - "anonymous", - "viewport" - ] + ], + "specShortname": "CSS2" }, "https://www.w3.org/TR/CSS21/conform.html": { "anchors": [ + "doclanguage", "ignore", "style-sheet", "user-agent" ], "specShortname": "CSS2" }, + "https://www.w3.org/TR/CSS21/syndata.html": { + "anchors": [ + "x15" + ], + "specShortname": "CSS2" + }, + "https://www.w3.org/TR/CSS21/visuren.html": { + "anchors": [ + "anonymous", + "viewport" + ], + "specShortname": "CSS2" + }, "https://www.w3.org/TR/clreq/": {}, "https://www.w3.org/TR/css-backgrounds-3/": { "anchors": [ @@ -217,13 +224,13 @@ "declared-value", "cascade-origin-user", "cascade-origin-ua", - "legacy-name-alias", + "longhand", + "initial-value", "shorthand-property", + "legacy-name-alias", "valdef-all-inherit", "inherited-value", - "css-legacy-value-alias", - "longhand", - "initial-value" + "css-legacy-value-alias" ], "specShortname": "css-cascade-5" }, @@ -246,13 +253,14 @@ "anchors": [ "inline-box", "out-of-flow", - "text-run", + "css-text-sequence", "block-container", "inline-formatting-context", "atomic-inline", "inline-level", "block-level", "block-box", + "root-element", "in-flow", "block-formatting-context", "independent-formatting-context", @@ -306,7 +314,6 @@ }, "https://www.w3.org/TR/css-ruby-1/": { "anchors": [ - "ruby", "line-breaks", "bopomofo-characters", "ruby-annotation-box" @@ -334,10 +341,8 @@ }, "https://www.w3.org/TR/css-text-4/": { "anchors": [ - "valdef-text-spacing-trim-end", - "valdef-text-spacing-allow-end", - "valdef-text-spacing-ideograph-alpha", - "valdef-text-spacing-ideograph-numeric" + "valdef-white-space-nowrap", + "valdef-white-space-break-spaces" ], "specShortname": "css-text-4" }, @@ -349,12 +354,6 @@ ], "specShortname": "css-text-decor-3" }, - "https://www.w3.org/TR/css-text/": { - "anchors": [ - "line-break-transform" - ], - "specShortname": "css-text-3" - }, "https://www.w3.org/TR/css-values-3/": { "anchors": [ "value-defs" @@ -368,7 +367,6 @@ "comb-any", "typedef-ident", "string-value", - "ch", "number-value", "length-value", "typedef-length-percentage", @@ -434,13 +432,14 @@ ], "specShortname": "cssom-1" }, + "https://www.w3.org/TR/i18n-glossary/": { + "specShortname": "i18n-glossary" + }, "https://www.w3.org/TR/ilreq/": {}, "https://www.w3.org/TR/jlreq/": {}, "https://www.w3.org/TR/selectors-4/": { "anchors": [ - "document-language", - "lang-pseudo", - "selector" + "lang-pseudo" ], "specShortname": "selectors-4" }, diff --git a/tr/refs/css-overflow-3.json b/tr/refs/css-overflow-3.json index 111852edb9cd..b1ec8b8fe1a9 100644 --- a/tr/refs/css-overflow-3.json +++ b/tr/refs/css-overflow-3.json @@ -37,6 +37,10 @@ "name": "CSS-GRID-2", "url": "https://www.w3.org/TR/css-grid-2/" }, + { + "name": "CSS-INLINE-3", + "url": "https://www.w3.org/TR/css-inline-3/" + }, { "name": "CSS-LOGICAL-1", "url": "https://www.w3.org/TR/css-logical-1/" @@ -45,10 +49,6 @@ "name": "CSS-MASKING-1", "url": "https://www.w3.org/TR/css-masking-1/" }, - { - "name": "CSS-OVERFLOW-3", - "url": "https://www.w3.org/TR/css-overflow-3/" - }, { "name": "CSS-OVERFLOW-4", "url": "https://www.w3.org/TR/css-overflow-4/" diff --git a/tr/refs/css-text-4.json b/tr/refs/css-text-4.json index bc3eeab7e687..a96c805b94e4 100644 --- a/tr/refs/css-text-4.json +++ b/tr/refs/css-text-4.json @@ -25,10 +25,6 @@ "name": "CSS-DISPLAY-3", "url": "https://www.w3.org/TR/css-display-3/" }, - { - "name": "CSS-DISPLAY-4", - "url": "https://drafts.csswg.org/css-display-4/" - }, { "name": "CSS-FONTS-3", "url": "https://www.w3.org/TR/css-fonts-3/" @@ -57,6 +53,14 @@ "name": "CSS-SIZING-3", "url": "https://www.w3.org/TR/css-sizing-3/" }, + { + "name": "CSS-TEXT-3", + "url": "https://www.w3.org/TR/css-text-3/" + }, + { + "name": "CSS-TEXT-4", + "url": "https://www.w3.org/TR/css-text-4/" + }, { "name": "CSS-VALUES-3", "url": "https://www.w3.org/TR/css-values-3/" @@ -97,10 +101,6 @@ "name": "RFC2119", "url": "https://datatracker.ietf.org/doc/html/rfc2119" }, - { - "name": "SELECTORS-4", - "url": "https://www.w3.org/TR/selectors-4/" - }, { "name": "UAX11", "url": "https://www.unicode.org/reports/tr11/tr11-40.html" @@ -147,10 +147,6 @@ "name": "CSS-CONDITIONAL-3", "url": "https://www.w3.org/TR/css-conditional-3/" }, - { - "name": "CSS-TEXT-3", - "url": "https://www.w3.org/TR/css-text-3/" - }, { "name": "CSS-TEXT-DECOR-3", "url": "https://www.w3.org/TR/css-text-decor-3/" @@ -159,6 +155,10 @@ "name": "DOM", "url": "https://dom.spec.whatwg.org/" }, + { + "name": "I18N-GLOSSARY", + "url": "https://www.w3.org/TR/i18n-glossary/" + }, { "name": "ILREQ", "url": "https://www.w3.org/TR/ilreq/" @@ -189,6 +189,10 @@ "name": "RFC6919", "url": "https://www.rfc-editor.org/rfc/rfc6919" }, + { + "name": "SELECTORS-4", + "url": "https://www.w3.org/TR/selectors-4/" + }, { "name": "TYPOGRAPHY", "url": "https://www.w3.org/TR/typography/" diff --git a/tr/refs/webrtc-svc.json b/tr/refs/webrtc-svc.json index 152b8c39fd74..3804e3e3e717 100644 --- a/tr/refs/webrtc-svc.json +++ b/tr/refs/webrtc-svc.json @@ -5,10 +5,6 @@ }, "refs": { "normative": [ - { - "name": "AV1-RTP", - "url": "https://aomediacodec.github.io/av1-rtp-spec/" - }, { "name": "Media-Capabilities", "url": "https://www.w3.org/TR/media-capabilities/" @@ -43,6 +39,10 @@ "name": "AV1", "url": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf" }, + { + "name": "AV1-RTP", + "url": "https://aomediacodec.github.io/av1-rtp-spec/" + }, { "name": "RFC6190", "url": "https://www.rfc-editor.org/rfc/rfc6190"