- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 06 Jan 2012 22:56:56 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-text
In directory hutz:/tmp/cvs-serv22622
Modified Files:
Overview.html Overview.src.html
Log Message:
Make word-spacing: <percentage> additional rather than absolute. See <http://lists.w3.org/Archives/Public/www-style/2012Jan/0147.html>.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-text/Overview.html,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -d -r1.198 -r1.199
--- Overview.html 6 Jan 2012 22:37:37 -0000 1.198
+++ Overview.html 6 Jan 2012 22:56:53 -0000 1.199
@@ -35,7 +35,7 @@
<dt>This version:
<dd><a href="http://dev.w3.org/csswg/css3-text/">$Date: 2012/01/06
- 05:12:54 $ (CVS $Revision$)</a> <!--
+ 22:37:37 $ (CVS $Revision$)</a> <!--
<dd><a href="http://www.w3.org/TR/2012/WD-css3-text-20120106/">http://www.w3.org/TR/2012/WD-css3-text-20120106/</a></dd>
-->
@@ -2564,16 +2564,16 @@
title="<spacing-limit>:<length>">‘<code
class=css><length></code>’</dfn>
- <dd>Specifies extra spacing <em>in addition to</em> the normal spacing.
- Values may be negative, but there may be implementation-dependent limits.
-
+ <dd>Specifies extra spacing <em>in addition to</em> the normal optimum
+ spacing. Values may be negative, but there may be
+ implementation-dependent limits.
<dt><dfn id=ltpercentagegt
title="<spacing-limit>:<percentage>">‘<code
class=css><percentage></code>’</dfn>
- <dd>Specifies the spacing as a percentage of the affected character. Only
- valid on ‘<a href="#word-spacing0"><code
+ <dd>Specifies the additional spacing as a percentage of the affected
+ character. Only valid on ‘<a href="#word-spacing0"><code
class=property>word-spacing</code></a>’. Negative values are not
allowed.
</dl>
@@ -2655,18 +2655,18 @@
<p>This property specifies the minimum, maximum, and optimal spacing
between “words”.
- <p>Spacing is applied to each word-separator character left in the text
- after the <a href="#white-space-rules">white space processing rules</a>
- have been applied, and should be applied half on each side of the
- character.
+ <p>Additional spacing is applied to each word-separator character left in
+ the text after the <a href="#white-space-rules">white space processing
+ rules</a> have been applied, and should be applied half on each side of
+ the character.
<div class=example>
<p>The following example will make all the spaces between words in Arabic
be rendered as zero-width, and double the width of each space in English:
- <pre>:lang(ar) { word-spacing: 0%; }
-<!-- -->:lang(en) { word-spacing: 200%; }</pre>
+ <pre>:lang(ar) { word-spacing: -100%; }
+<!-- -->:lang(en) { word-spacing: 100%; }</pre>
<p>The following example will <em>add</em> half the the width of the
“0” glyph to word spacing character [[CSS3VALUES]]:
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-text/Overview.src.html,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -d -r1.296 -r1.297
--- Overview.src.html 6 Jan 2012 22:37:37 -0000 1.296
+++ Overview.src.html 6 Jan 2012 22:56:54 -0000 1.297
@@ -1856,12 +1856,14 @@
by the current font and/or the user agent. See <a href="#normal-spacing">below</a>.
</dd>
<dt><dfn title="<spacing-limit>:<length>">''<length>''</dfn>
- <dd>Specifies extra spacing <em>in addition to</em> the normal spacing.
+ <dd>Specifies extra spacing <em>in addition to</em> the normal optimum
+ spacing.
Values may be negative, but there may be implementation-dependent
limits.
</dd>
<dt><dfn title="<spacing-limit>:<percentage>">''<percentage>''</dfn>
- <dd>Specifies the spacing as a percentage of the affected character.
+ <dd>Specifies the additional spacing as a percentage of the affected
+ character.
Only valid on 'word-spacing'. Negative values are not allowed.
</dd>
</dl>
@@ -1936,7 +1938,7 @@
<p>This property specifies the minimum, maximum, and optimal spacing
between “words”.
- <p>Spacing is applied to each word-separator character
+ <p>Additional spacing is applied to each word-separator character
left in the text after the <a href="#white-space-rules">white space
processing rules</a> have been applied, and should be applied half on
each side of the character.
@@ -1945,8 +1947,8 @@
<p>The following example will make all the spaces between words in Arabic
be rendered as zero-width, and double the width of each space in English:
- <pre>:lang(ar) { word-spacing: 0%; }
-<!-- -->:lang(en) { word-spacing: 200%; }</pre>
+ <pre>:lang(ar) { word-spacing: -100%; }
+<!-- -->:lang(en) { word-spacing: 100%; }</pre>
<p>The following example will <em>add</em> half the the width of the
“0” glyph to word spacing character [[CSS3VALUES]]:
Received on Friday, 6 January 2012 22:57:00 UTC