- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 07 Aug 2012 14:53:07 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory hutz:/tmp/cvs-serv3038/w3c/css/properties/css3
Modified Files:
CssFontKerning.java
Log Message:
value none missing (might be worth moving to an array/hashmap like others
Index: CssFontKerning.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssFontKerning.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CssFontKerning.java 6 Aug 2012 08:44:36 -0000 1.3
+++ CssFontKerning.java 7 Aug 2012 14:53:05 -0000 1.4
@@ -60,6 +60,8 @@
value = normal;
} else if (auto.equals(ident)) {
value = auto;
+ } else if (none.equals(ident)) {
+ value = none;
} else {
throw new InvalidParamException("value",
val.toString(),
Received on Tuesday, 7 August 2012 14:53:10 UTC