- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 31 Aug 2012 20:36:59 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory hutz:/tmp/cvs-serv24193/css3
Modified Files:
CssTabSize.java
Log Message:
ident case missing (for inherit)
Index: CssTabSize.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssTabSize.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssTabSize.java 31 Aug 2012 14:04:19 -0000 1.1
+++ CssTabSize.java 31 Aug 2012 20:36:57 -0000 1.2
@@ -57,6 +57,11 @@
}
value = val;
break;
+ case CssTypes.CSS_IDENT:
+ if (inherit.equals(val)) {
+ value = inherit;
+ break;
+ }
default:
throw new InvalidParamException("value",
val, getPropertyName(), ac);
Received on Friday, 31 August 2012 20:37:01 UTC