- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 17 Jan 2012 19:53:49 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists In directory hutz:/tmp/cvs-serv9992 Modified Files: Overview.html Overview.src.html Log Message: Accidentally dropped the text about initial/invalid/none not being valid counter names in the counter-* properties. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-lists/Overview.html,v retrieving revision 1.136 retrieving revision 1.137 diff -u -d -r1.136 -r1.137 --- Overview.html 9 Jan 2012 19:57:01 -0000 1.136 +++ Overview.html 17 Jan 2012 19:53:47 -0000 1.137 @@ -25,12 +25,13 @@ <h1>CSS Lists and Counters Module Level 3</h1> - <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 9 January 2012</h2> + <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 17 January + 2012</h2> <dl> <dt>This version: - <dd><!--<a href="http://www.w3.org/TR/2012/WD-css3-lists-20120109">http://www.w3.org/TR/2012/WD-css3-lists-20120109</a></dd>--> + <dd><!--<a href="http://www.w3.org/TR/2012/WD-css3-lists-20120117">http://www.w3.org/TR/2012/WD-css3-lists-20120117</a></dd>--> <a href="http://dev.w3.org/csswg/css3-lists/">http://dev.w3.org/csswg/css3-lists/</a> @@ -1550,6 +1551,14 @@ counter is set to on the element it's set on. The default is ‘<code class=css>0</code>’. + <p>On all of these properties, a value of ‘<a href="#none"><code + class=property>none</code></a>’ means that no counters are + incremented, set, or reset, respectively. Counter names must not be + ‘<code class=property>initial</code>’, ‘<code + class=property>inherit</code>’, or ‘<a href="#none"><code + class=property>none</code></a>’; using one of these keywords as a + counter name makes the property invalid. + <p>‘<a href="#counter-reset"><code class=property>counter-reset</code></a>’ always establishes a new <a href="#counter-scope"><i>counter scope</i></a> on the element it's set on. Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v retrieving revision 1.183 retrieving revision 1.184 diff -u -d -r1.183 -r1.184 --- Overview.src.html 9 Jan 2012 19:57:02 -0000 1.183 +++ Overview.src.html 17 Jan 2012 19:53:47 -0000 1.184 @@ -898,6 +898,8 @@ <p>The 'counter-set' and 'counter-reset' properties also contains a list of one or more names of counters, each one optionally followed by an integer. The integer gives the value that the counter is set to on the element it's set on. The default is ''0''.</p> + <p>On all of these properties, a value of 'none' means that no counters are incremented, set, or reset, respectively. Counter names must not be 'initial', 'inherit', or 'none'; using one of these keywords as a counter name makes the property invalid.</p> + <p>'counter-reset' always establishes a new <i>counter scope</i> on the element it's set on. 'counter-increment' and 'counter-set' sometimes establish a new <i>counter scope</i> on the element they're set on.</p> <div class="example">
Received on Tuesday, 17 January 2012 19:53:51 UTC