- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 16 Aug 2005 09:47:09 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties In directory hutz:/tmp/cvs-serv847/org/w3c/css/properties Modified Files: CssFontFamily.java Log Message: Bug fix from Jean-Guilhem Rouel, to address http://lists.w3.org/Archives/Public/www-validator-css/2005Aug/0020.html Index: CssFontFamily.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/CssFontFamily.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- CssFontFamily.java 8 Aug 2005 13:18:12 -0000 1.4 +++ CssFontFamily.java 16 Aug 2005 09:47:07 -0000 1.5 @@ -4,34 +4,6 @@ // // (c) COPYRIGHT MIT and INRIA, 1997. // Please first read the full copyright statement in file COPYRIGHT.html -/* - * $Log$ - * Revision 1.4 2005/08/08 13:18:12 ylafon - * All those changed made by Jean-Guilhem Rouel: - * - * Huge patch, imports fixed (automatic) - * Bug fixed: 372, 920, 778, 287, 696, 764, 233 - * Partial bug fix for 289 - * - * Issue with "inherit" in CSS2. - * The validator now checks the number of values (extraneous values were previously ignored) - * - * Revision 1.3 2002/08/07 12:57:54 sijtsche - * value none added - * - * Revision 1.2 2002/04/08 21:17:43 plehegar - * New - * - * Revision 3.1 1997/08/29 13:13:46 plehegar - * Freeze - * - * Revision 2.2 1997/08/20 11:41:22 plehegar - * Freeze - * - * Revision 1.1 1997/07/08 13:46:31 plehegar - * Initial revision - * - */ package org.w3c.css.properties; @@ -141,10 +113,6 @@ boolean manyValues = expression.getCount() > 1; - if(check && manyValues) { - throw new InvalidParamException("unrecognize", ac); - } - boolean family = true; CssValue val = expression.getValue(); char op;
Received on Tuesday, 16 August 2005 09:47:20 UTC