- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 27 Aug 2012 19:17:55 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory hutz:/tmp/cvs-serv1089
Modified Files:
CssFontVariantLigatures.java
Log Message:
bump the max number of values
Index: CssFontVariantLigatures.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssFontVariantLigatures.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- CssFontVariantLigatures.java 27 Aug 2012 14:55:33 -0000 1.6
+++ CssFontVariantLigatures.java 27 Aug 2012 19:17:52 -0000 1.7
@@ -133,7 +133,7 @@
*/
public CssFontVariantLigatures(ApplContext ac, CssExpression expression, boolean check)
throws InvalidParamException {
- if (check && expression.getCount() > 3) {
+ if (check && expression.getCount() > 4) {
throw new InvalidParamException("unrecognize", ac);
}
Received on Monday, 27 August 2012 19:18:03 UTC