- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 07 Dec 2011 02:43:20 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv27040
Modified Files:
Overview.html Overview.src.html
Log Message:
Add a line to the UA stylesheet using cycle() for <ul>.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.html,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -d -r1.129 -r1.130
--- Overview.html 7 Dec 2011 02:41:57 -0000 1.129
+++ Overview.html 7 Dec 2011 02:43:18 -0000 1.130
@@ -3086,6 +3086,9 @@
ul { list-style-type: disc; }
ul ul { list-style-type: square; }
ul ul ul { list-style-type: circle; }
+/* Alternately, if Values & Units Level 3 is supported, replace
+ the above three lines with: */
+ul { list-style-type: cycle(disc, square, circle); }
/* The type attribute on ol and ul elements */
ul[type="disc"] { list-style-type: disc; }
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -d -r1.176 -r1.177
--- Overview.src.html 7 Dec 2011 02:41:57 -0000 1.176
+++ Overview.src.html 7 Dec 2011 02:43:18 -0000 1.177
@@ -2036,6 +2036,9 @@
ul { list-style-type: disc; }
ul ul { list-style-type: square; }
ul ul ul { list-style-type: circle; }
+/* Alternately, if Values & Units Level 3 is supported, replace
+ the above three lines with: */
+ul { list-style-type: cycle(disc, square, circle); }
/* The type attribute on ol and ul elements */
ul[type="disc"] { list-style-type: disc; }
Received on Wednesday, 7 December 2011 02:43:25 UTC