- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 06 Apr 2009 13:41:44 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css1 In directory hutz:/tmp/cvs-serv15905/properties/css1 Modified Files: Css1Style.java Log Message: commenting out the warning for floats without a width, since CSS2.1 does not recommend it any more, and most modern user agents will deal with it just fine. Index: Css1Style.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/Css1Style.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- Css1Style.java 9 Mar 2009 21:14:51 -0000 1.16 +++ Css1Style.java 6 Apr 2009 13:41:42 -0000 1.17 @@ -2612,7 +2612,9 @@ // warning for floats if (cssFloat != null) { - findConflictsFloatElements(ac, warnings, selector, allSelectors); + //findConflictsFloatElements(ac, warnings, selector, allSelectors); + // disabled per thread on www-validator-css + // and changes in CSS2.1 removing this constraint } if (cssBackground.getColor() != null) {
Received on Monday, 6 April 2009 13:56:45 UTC