csswg/css3-lists Overview.html,1.95,1.96 Overview.src.html,1.142,1.143

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

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Added a symbols() example to the list-style-type examples.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.html,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -d -r1.95 -r1.96
--- Overview.html	18 Nov 2011 03:11:11 -0000	1.95
+++ Overview.html	18 Nov 2011 03:20:37 -0000	1.96
@@ -608,6 +608,10 @@
    (<a
     href="#upper-roman">defined in this specification</a>) */
 
+ul { list-style-type: symbols('○' '●' as repeating); }
+/* Sets all unordered list items to alternate between empty and 
+   filled circles for their markers. */
+
 ul { list-style-type: none; }
 /* Suppresses the marker entirely, unless list-style-image is specified
    with a valid image, or the marker's contents are set explicitly via

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -d -r1.142 -r1.143
--- Overview.src.html	18 Nov 2011 03:11:11 -0000	1.142
+++ Overview.src.html	18 Nov 2011 03:20:37 -0000	1.143
@@ -286,6 +286,10 @@
 /* Sets all ordered lists to use the upper-roman counter-style 
    (<a href="#upper-roman">defined in this specification</a>) */
 
+ul { list-style-type: symbols('○' '●' as repeating); }
+/* Sets all unordered list items to alternate between empty and 
+   filled circles for their markers. */
+
 ul { list-style-type: none; }
 /* Suppresses the marker entirely, unless list-style-image is specified
    with a valid image, or the marker's contents are set explicitly via

Received on Friday, 18 November 2011 03:20:44 UTC