2002/css-validator/org/w3c/css/properties/css3 CssTabSize.java,1.1,1.2

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