- From: Jean-Guilhem Rouel via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 08 Feb 2007 16:41:12 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css1
In directory hutz:/tmp/cvs-serv13566/org/w3c/css/properties/css1
Modified Files:
Css1Style.java
Log Message:
Bug fix. A wrong variable was used
Index: Css1Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/Css1Style.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Css1Style.java 14 Dec 2006 02:53:49 -0000 1.6
+++ Css1Style.java 8 Feb 2007 16:41:09 -0000 1.7
@@ -2958,7 +2958,7 @@
if ((cssTextIndent != null)
&& (selector != null)
&& (!selector.isBlockLevelElement())) {
- warnings.addWarning(new Warning(cssTextAlign,
+ warnings.addWarning(new Warning(cssTextIndent,
"block-level", 1, ac));
}
else if ((cssTextIndentMob != null)
Received on Thursday, 8 February 2007 16:41:26 UTC