- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 03 Sep 2012 15:11:39 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2
In directory hutz:/tmp/cvs-serv17659/css2
Modified Files:
CssTextAlign.java
Log Message:
typo.. (aka copy/paste issue)
Index: CssTextAlign.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/CssTextAlign.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssTextAlign.java 3 Sep 2012 15:05:43 -0000 1.1
+++ CssTextAlign.java 3 Sep 2012 15:11:37 -0000 1.2
@@ -83,19 +83,6 @@
expression.getValue(),
getPropertyName(), ac);
}
-
- // ident, so inherit, or allowed value
- if (inherit.equals(val)) {
- value = inherit;
- } else {
- val = getMatchingIdent((CssIdent) val);
- if (val == null) {
- throw new InvalidParamException("value",
- expression.getValue(),
- getPropertyName(), ac);
- }
- value = val;
- }
expression.next();
}
Received on Monday, 3 September 2012 15:11:40 UTC