- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 11 Oct 2012 13:17:38 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css1 In directory hutz:/tmp/cvs-serv2540/css1 Modified Files: Css1Style.java Removed Files: CssMaxHeight.java CssMaxHeightATSC.java Log Message: max-height per css1-css3 Index: Css1Style.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/Css1Style.java,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- Css1Style.java 11 Oct 2012 12:55:38 -0000 1.45 +++ Css1Style.java 11 Oct 2012 13:17:36 -0000 1.46 @@ -121,12 +121,6 @@ public CssWidthMob cssWidthMob; /** - * max-height property - */ - public CssMaxHeight cssMaxHeight; - public CssMaxHeightATSC cssMaxHeightATSC; - - /** * height property */ public org.w3c.css.properties.css.CssHeight cssHeight; @@ -853,25 +847,6 @@ } /** - * Get the max-height property - */ - public final CssMaxHeight getMaxHeight() { - if (cssMaxHeight == null) { - cssMaxHeight = - (CssMaxHeight) style.CascadingOrder(new CssMaxHeight(), style, selector); - } - return cssMaxHeight; - } - - public final CssMaxHeightATSC getMaxHeightATSC() { - if (cssMaxHeightATSC == null) { - cssMaxHeightATSC = - (CssMaxHeightATSC) style.CascadingOrder(new CssMaxHeightATSC(), style, selector); - } - return cssMaxHeightATSC; - } - - /** * Get the height property */ public final org.w3c.css.properties.css.CssHeight getHeight() { --- CssMaxHeightATSC.java DELETED --- --- CssMaxHeight.java DELETED ---
Received on Thursday, 11 October 2012 13:17:39 UTC