csswg/css3-lists Overview.html,1.27,1.28 Overview.src.html,1.67,1.68

Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv26747

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Added the lower/upper-alpha-symbolic styles, which are provided by Word and have some real-world usage.


Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.html,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Overview.html	21 Apr 2011 23:59:00 -0000	1.27
+++ Overview.html	22 Apr 2011 00:04:34 -0000	1.28
@@ -31,12 +31,12 @@
 
    <h1>CSS Lists and Counters Module Level 3</h1>
 
-   <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 21 April 2011</h2>
+   <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 22 April 2011</h2>
 
    <dl>
     <dt>This version:
 
-    <dd><!-- <a href="http://www.w3.org/TR/2011/WD-css3-lists-20110421">http://www.w3.org/TR/2011/WD-css3-lists-20110421</a></dd> -->
+    <dd><!-- <a href="http://www.w3.org/TR/2011/WD-css3-lists-20110422">http://www.w3.org/TR/2011/WD-css3-lists-20110422</a></dd> -->
      <a
      href="http://dev.w3.org/csswg/css3-lists/">http://dev.w3.org/csswg/css3-lists/</a>
 
@@ -3465,6 +3465,18 @@
 	suffix: '';
 }
 
+@counter-style lower-alpha-symbolic {
+	type: symbolic;
+	glyphs: '\61' '\62' '\63' '\64' '\65' '\66' '\67' '\68' '\69' '\6A' '\6B' '\6C' '\6D' '\6E' '\6F' '\70' '\71' '\72' '\73' '\74' '\75' '\76' '\77' '\78' '\79' '\7A';
+	/* 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' */
+}
+
+@counter-style upper-alpha-symbolic {
+	type: symbolic;
+	glyphs: '\41' '\42' '\43' '\44' '\45' '\46' '\47' '\48' '\49' '\4A' '\4B' '\4C' '\4D' '\4E' '\4F' '\50' '\51' '\52' '\53' '\54' '\55' '\56' '\57' '\58' '\59' '\5A';
+	/* 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' */
+}
+
 /* Non-repeating  */
 
 @counter-style circled-decimal {

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- Overview.src.html	21 Apr 2011 23:59:00 -0000	1.67
+++ Overview.src.html	22 Apr 2011 00:04:35 -0000	1.68
@@ -2713,6 +2713,18 @@
 	suffix: '';
 }
 
+@counter-style lower-alpha-symbolic {
+	type: symbolic;
+	glyphs: '\61' '\62' '\63' '\64' '\65' '\66' '\67' '\68' '\69' '\6A' '\6B' '\6C' '\6D' '\6E' '\6F' '\70' '\71' '\72' '\73' '\74' '\75' '\76' '\77' '\78' '\79' '\7A';
+	/* 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' */
+}
+
+@counter-style upper-alpha-symbolic {
+	type: symbolic;
+	glyphs: '\41' '\42' '\43' '\44' '\45' '\46' '\47' '\48' '\49' '\4A' '\4B' '\4C' '\4D' '\4E' '\4F' '\50' '\51' '\52' '\53' '\54' '\55' '\56' '\57' '\58' '\59' '\5A';
+	/* 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' */
+}
+
 /* Non-repeating  */
 
 @counter-style circled-decimal {

Received on Friday, 22 April 2011 00:04:38 UTC