- From: CVS User ylafon <cvsmail@w3.org>
- Date: Wed, 09 Jan 2013 12:16:42 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory roscoe:/tmp/cvs-serv6438/css3
Modified Files:
CssListStyle.java
Log Message:
any ident is allowed in list-style-type (provided the @rule defines it, and that's a TODO)
--- /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssListStyle.java 2012/12/08 15:31:44 1.5
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssListStyle.java 2013/01/09 12:16:42 1.6
@@ -1,4 +1,4 @@
-// $Id: CssListStyle.java,v 1.5 2012/12/08 15:31:44 ylafon Exp $
+// $Id: CssListStyle.java,v 1.6 2013/01/09 12:16:42 ylafon Exp $
// Author: Yves Lafon <ylafon@w3.org>
//
// (c) COPYRIGHT MIT, ERCIM and Keio University, 2012.
@@ -118,6 +118,12 @@
// TODO check the @counter-style
typeVal = val;
break;
+ } else {
+ // it's still acceptable
+ // but the name should be listed in a
+ // @counter-style rule
+ typeVal = val;
+ break;
}
}
// unrecognized ident.. fail!
Received on Wednesday, 9 January 2013 12:16:43 UTC