- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 01 Sep 2012 17:03:19 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory hutz:/tmp/cvs-serv16378/css3
Modified Files:
CssTextDecorationLine.java
Log Message:
max nb of values
Index: CssTextDecorationLine.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssTextDecorationLine.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssTextDecorationLine.java 1 Sep 2012 16:55:50 -0000 1.1
+++ CssTextDecorationLine.java 1 Sep 2012 17:03:17 -0000 1.2
@@ -58,7 +58,7 @@
*/
public CssTextDecorationLine(ApplContext ac, CssExpression expression, boolean check)
throws InvalidParamException {
- if (check && expression.getCount() > 2) {
+ if (check && expression.getCount() > 3) {
throw new InvalidParamException("unrecognize", ac);
}
setByUser();
Received on Saturday, 1 September 2012 17:03:21 UTC