- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 03 Feb 2009 19:50:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css1 In directory hutz:/tmp/cvs-serv15749/org/w3c/css/properties/css1 Modified Files: Css1Style.java Log Message: syntax fix Index: Css1Style.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/Css1Style.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Css1Style.java 3 Feb 2009 19:39:01 -0000 1.10 +++ Css1Style.java 3 Feb 2009 19:50:47 -0000 1.11 @@ -2563,8 +2563,8 @@ } } - if (CssFloat.get() != null) { - if(CssWidth.get() == null ) { + if (cssFloat != null) { + if(cssWidth == null ) { // TODO do NOT send warning if element in context // is html, img, input, textarea, select, or object warnings.addWarning(new Warning(cssFloat, "float-no-width", 2, ac));
Received on Tuesday, 3 February 2009 19:50:59 UTC