2002/css-validator/org/w3c/css/properties/css CssZIndex.java,1.2,1.3

Update of /sources/public/2002/css-validator/org/w3c/css/properties/css
In directory hutz:/tmp/cvs-serv32416/css

Modified Files:
	CssZIndex.java 
Log Message:
fixed since/spec linkks, added css3 version per http://www.w3.org/TR/2012/WD-css3-positioning-20120207/#z-index

Index: CssZIndex.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssZIndex.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssZIndex.java	4 Sep 2011 17:56:30 -0000	1.2
+++ CssZIndex.java	15 Aug 2012 20:10:09 -0000	1.3
@@ -16,12 +16,13 @@
 import org.w3c.css.values.CssValue;
 
 /**
+ * @since CSS2
  */
 public class CssZIndex extends CssProperty {
 
     public static final String propertyName = "z-index";
 
-    CssValue value;
+    public CssValue value;
 
     public static CssIdent auto = CssIdent.getIdent("auto");
 

Received on Wednesday, 15 August 2012 20:10:12 UTC