diff --git a/css-text-4/Overview.bs b/css-text-4/Overview.bs index 830b89fe55b6..a210cb5eaf6c 100644 --- a/css-text-4/Overview.bs +++ b/css-text-4/Overview.bs @@ -12,6 +12,7 @@ Editor: Koji Ishii, Invited Expert, kojiishi@gluesoft.co.jp Editor: Alan Stearns, Adobe Systems, stearns@adobe.com Abstract: This module defines properties for text manipulation and specifies their processing model. It covers line breaking, justification and alignment, white space handling, and text transformation. Ignored terms: segment break, segment breaks +At Risk: The ''preserve-trim'' of the 'text-space-collapse' property
Name: text-space-collapse - Value: collapse | discard | preserve | preserve-breaks | preserve-spaces + Value: collapse | discard | preserve | preserve-auto | preserve-trim | preserve-breaks | preserve-spaces Initial: collapse Applies to: all elements Inherited: yes @@ -65,6 +66,37 @@ White Space Collapsing: the 'text-space-collapse' property from collapsing sequences of white space. Segment breaks are preserved as forced line breaks. +
Name: text-space-trim Value: none | trim-inner || discard-before || discard-after - Initial: collapse + Initial: none Applies to: all elements Inherited: no Percentages: n/a @@ -450,6 +482,52 @@ Shorthand for White Space and Wrapping: the 'white-space' property
| 'white-space' + | 'text-space-collapse' + | 'text-wrap' + | 'text-space-trim' + |
|---|---|---|---|
| ''white-space/normal'' + | ''text-space-collapse/collapse'' + | ''text-wrap/normal'' + | ''text-space-trim/none'' + |
| ''pre'' + | ''text-space-collapse/preserve'' + | ''text-wrap/nowrap'' + | ''text-space-trim/none'' + |
| ''nowrap'' + | ''text-space-collapse/collapse'' + | ''text-wrap/nowrap'' + | ''text-space-trim/none'' + |
| ''pre-wrap'' + | ''text-space-collapse/preserve'' + | ''text-wrap/normal'' + | ''text-space-trim/none'' + |
| ''pre-wrap-auto'' + | ''text-space-collapse/preserve-auto'' + | ''text-wrap/normal'' + | ''text-space-trim/none'' + |
| ''pre-line'' + | ''text-space-collapse/preserve-breaks'' + | ''text-wrap/normal'' + | ''text-space-trim/none'' + |