8000 add missing diagrams · xfq/csswg-drafts@c477dfa · GitHub
Skip to content

Commit c477dfa

Browse files
committed
add missing diagrams
1 parent 1df52f4 commit c477dfa

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

css3-text/Overview.src.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -465,17 +465,17 @@ <h3 id="white-space-collapsing"><span class="secno">3.1.</span>
465465
rules</a>:</p>
466466

467467
<dl>
468-
<dt><dfn title="white-space-collapse:collapse"><code>collapse</code></dfn></dt>
468+
<dt><dfn title="white-space-collapsing:collapse"><code>collapse</code></dfn></dt>
469469
<dd>This value directs user agents to collapse sequences of white space
470470
into a single character (or <a href="#line-break-transform">in some
471471
cases</a>, no character).</dd>
472-
<dt><dfn title="white-space-collapse:preserve"><code>preserve</code></dfn></dt>
472+
<dt><dfn title="white-space-collapsing:preserve"><code>preserve</code></dfn></dt>
473473
<dd>This value prevents user agents from collapsing sequences
474474
of white space. Line breaks are preserved.</dd>
475-
<dt><dfn title="white-space-collapse:preserve-breaks"><code>preserve-breaks</code></dfn></dt>
475+
<dt><dfn title="white-space-collapsing:preserve-breaks"><code>preserve-breaks</code></dfn></dt>
476476
<dd>This value collapses white space as for 'collapse', but preserves
477477
line breaks.</dd>
478-
<dt><dfn title="white-space-collapse:discard"><code>discard</code></dfn></dt>
478+
<dt><dfn title="white-space-collapsing:discard"><code>discard</code></dfn></dt>
479479
<dd>This value directs user agents to "discard" all white space in the
480480
element.
481481
<dt><dfn title="white-space-collapsing:trim-inner"><code>trim-inner</code></dfn></dt>
@@ -497,7 +497,7 @@ <h3 id="white-space-rules"><span class="secno">3.2.</span>
497497
characters as if they were not there:</p>
498498

499499
<ul>
500-
<li id="collapse"><p>If <span class="property">'white-space-collapse'</span>
500+
<li id="collapse"><p>If <span class="property">'white-space-collapsing'</span>
501501
is set to 'collapse' or 'preserve-breaks', white space characters
502502
are considered <dfn>collapsible</dfn> and are processed by
503503
performing the following steps:</p>
@@ -506,7 +506,7 @@ <h3 id="white-space-rules"><span class="secno">3.2.</span>
506506
a line break character are removed. (This has the effect of
507507
discarding all white space at the start of a line but preserving
508508
a trailing space if one exists at the end.)</li>
509-
<li>If <span class="property">'white-space-collapse'</span> is not
509+
<li>If <span class="property">'white-space-collapsing'</span> is not
510510
'preserve-breaks', line break characters are transformed for
511511
rendering according to the <a href="#line-break-transform">line
512512
break transformation rules</a>.
@@ -517,11 +517,11 @@ <h3 id="white-space-rules"><span class="secno">3.2.</span>
517517
removed.</li>
518518
</ol>
519519
</li>
520-
<li><p>If <span class="property">'white-space-collapse'</span> is set to
520+
<li><p>If <span class="property">'white-space-collapsing'</span> is set to
521521
'preserve', any sequence of spaces (U+0020) unbroken by an element
522522
boundary is treated as a sequence of non-breaking spaces. However,
523523
a line breaking opportunity exists at the end of the sequence.</p></li>
524-
<li><p>If <span class="property">'white-space-collapse'</span> is set to
524+
<li><p>If <span class="property">'white-space-collapsing'</span> is set to
525525
'discard', the first white space character in every white space
526526
sequence is converted to a zero width non-joiner (U+200C) and
527527
the rest of the sequence is removed.</p>
@@ -555,7 +555,7 @@ <h4 id="egbidiwscollapse"><span class="secno">3.2.1.</span>
555555

556556
<p>where the <code>&lt;ltr&gt;</code> element represents a left-to-right
557557
embedding and the <code>&lt;rtl&gt;</code> element represents a
558-
right-to-left embedding. If the 'white-space-collapse' property is set
558+
right-to-left embedding. If the 'white-space-collapsing' property is set
559559
to 'collapse', the above processing model would result in the
560560
following:</p>
561561

@@ -667,26 +667,26 @@ <h3 id="white-space"><span class="secno">3.3.</span>
667667
</table>
668668

669669
<p>The 'white-space' property is a shorthand for the
670-
<a href="#white-space-collapse">'white-space-collapse'</a>
670+
<a href="#white-space-collapsing">'white-space-collapsing'</a>
671671
and <a href="#text-wrap">'text-wrap'</a> properties.
672672
Not all combinations are represented.
673673
Values have the following meanings:</p>
674674

675675
<dl>
676676
<dt><dfn title="white-space:normal"><code>normal</code></dfn></dt>
677-
<dd>Sets 'white-space-collapse' to 'collapse' and
677+
<dd>Sets 'white-space-collapsing' to 'collapse' and
678678
'text-wrap' to 'normal'</dd>
679679
<dt><dfn title="white-space:pre"><code>pre</code></dfn></dt>
680-
<dd>Sets 'white-space-collapse' to 'preserve' and
680+
<dd>Sets 'white-space-collapsing' to 'preserve' and
681681
'text-wrap' to 'none'</dd>
682682
<dt><dfn title="white-space:nowrap"><code>nowrap</code></dfn></dt>
683-
<dd>Sets 'white-space-collapse' to 'collapse' and
683+
<dd>Sets 'white-space-collapsing' to 'collapse' and
684684
'text-wrap' to 'none'</dd>
685685
<dt><dfn title="white-space:pre-wrap"><code>pre-wrap</code></dfn></dt>
686-
<dd>Sets 'white-space-collapse' to 'preserve' and
686+
<dd>Sets 'white-space-collapsing' to 'preserve' and
687687
'text-wrap' to 'normal'</dd>
688688
<dt><dfn title="white-space:pre-line"><code>pre-line</code></dfn></dt>
689-
<dd>Sets 'white-space-collapse' to 'preserve-breaks' and
689+
<dd>Sets 'white-space-collapsing' to 'preserve-breaks' and
690690
'text-wrap' to 'normal'</dd>
691691
</dl>
692692

@@ -2846,7 +2846,7 @@ <h2 id="changes"><span class="secno">10.</span>
28462846
<a href="http://www.w3.org/TR/2003/CR-css3-text-20030514/#white-space-treatment" class="property">'white-space-treatment'</a>,
28472847
and <a href="http://www.w3.org/TR/2003/CR-css3-text-20030514/#all-space-treatment" class="property">'all-space-treatment'</a>
28482848
properties have been replaced by the
2849-
<a href="#word-break" class="property">'white-space-collapse'</a> property.</li>
2849+
<a href="#word-break" class="property">'white-space-collapsing'</a> property.</li>
28502850
<li>The <a href="http://www.w3.org/TR/2003/CR-css3-text-20030514/#min-font-size" class="property">'min-font-size'</a>
28512851
and <a href="http://www.w3.org/TR/2003/CR-css3-text-20030514/#max-font-size" class="property">'max-font-size'</a>
28522852
properties have been delegated to the next revision of the

css3-text/text-emphasis-ja.gif

1.3 KB
Loading

css3-text/text-emphasis-zh.gif

1.14 KB
Loading

0 commit comments

Comments
 (0)