- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 05 Nov 2012 20:45:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3 In directory hutz:/tmp/cvs-serv20705/css3 Modified Files: CssVerticalAlign.java Log Message: re-add use-script per test suite, will be changed later Index: CssVerticalAlign.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssVerticalAlign.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CssVerticalAlign.java 2 Nov 2012 13:37:09 -0000 1.1 +++ CssVerticalAlign.java 5 Nov 2012 20:45:47 -0000 1.2 @@ -14,7 +14,6 @@ /** * @spec http://www.w3.org/TR/2002/WD-css3-linebox-20020515/#vertical-align - * (amended, 'use-script' removed per 20121102 ed-draft) */ public class CssVerticalAlign extends org.w3c.css.properties.css.CssVerticalAlign { @@ -22,7 +21,7 @@ static { String id_values[] = {"auto", "baseline", "sub", "super", "top", "text-top", - "central", "middle", "bottom", "text-bottom"}; + "central", "middle", "bottom", "text-bottom", "use-script"}; allowed_values = new CssIdent[id_values.length]; int i = 0; @@ -44,6 +43,7 @@ * Create a new CssVerticalAlign */ public CssVerticalAlign() { + value = initial; } /**
Received on Monday, 5 November 2012 20:45:50 UTC