- From: CVS User ylafon <cvsmail@w3.org>
- Date: Wed, 05 Dec 2012 16:13:40 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3 In directory roscoe:/tmp/cvs-serv14763/css3 Modified Files: CssCaptionSide.java Log Message: added css3 values from css3-writing-modes --- /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssCaptionSide.java 2012/12/05 15:47:18 1.1 +++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssCaptionSide.java 2012/12/05 16:13:40 1.2 @@ -1,5 +1,5 @@ // -// $Id: CssCaptionSide.java,v 1.1 2012/12/05 15:47:18 ylafon Exp $ +// $Id: CssCaptionSide.java,v 1.2 2012/12/05 16:13:40 ylafon Exp $ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. @@ -15,13 +15,14 @@ /** * @spec http://www.w3.org/TR/2011/REC-CSS2-20110607/tables.html#propdef-caption-side + * @spec http://www.w3.org/TR/2012/WD-css3-writing-modes-20120501/#caption-side */ public class CssCaptionSide extends org.w3c.css.properties.css.CssCaptionSide { public static final CssIdent[] allowed_values; static { - String[] _allowed_values = {"top", "bottom"}; + String[] _allowed_values = {"top", "bottom", "before", "after"}; int i = 0; allowed_values = new CssIdent[_allowed_values.length]; for (String s : _allowed_values) {
Received on Wednesday, 5 December 2012 16:13:45 UTC