- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 11 Oct 2012 13:34:01 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css In directory hutz:/tmp/cvs-serv6486/css Modified Files: CssMaxHeight.java CssMaxWidth.java CssMinHeight.java CssMinWidth.java Log Message: typo Index: CssMinHeight.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssMinHeight.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CssMinHeight.java 11 Oct 2012 12:55:38 -0000 1.1 +++ CssMinHeight.java 11 Oct 2012 13:33:59 -0000 1.2 @@ -56,7 +56,7 @@ * Returns the name of this property */ public final String getPropertyName() { - return "left"; + return "min-height"; } /** Index: CssMaxHeight.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssMaxHeight.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CssMaxHeight.java 11 Oct 2012 13:17:36 -0000 1.1 +++ CssMaxHeight.java 11 Oct 2012 13:33:59 -0000 1.2 @@ -56,7 +56,7 @@ * Returns the name of this property */ public final String getPropertyName() { - return "left"; + return "max-height"; } /** Index: CssMinWidth.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssMinWidth.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CssMinWidth.java 11 Oct 2012 09:53:52 -0000 1.1 +++ CssMinWidth.java 11 Oct 2012 13:33:59 -0000 1.2 @@ -56,7 +56,7 @@ * Returns the name of this property */ public final String getPropertyName() { - return "left"; + return "min-width"; } /** Index: CssMaxWidth.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssMaxWidth.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CssMaxWidth.java 11 Oct 2012 12:36:13 -0000 1.1 +++ CssMaxWidth.java 11 Oct 2012 13:33:59 -0000 1.2 @@ -56,7 +56,7 @@ * Returns the name of this property */ public final String getPropertyName() { - return "left"; + return "max-width"; } /**
Received on Thursday, 11 October 2012 13:34:07 UTC