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

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

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/css2/CssZIndex.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssZIndex.java	4 Sep 2011 17:56:30 -0000	1.1
+++ CssZIndex.java	15 Aug 2012 20:10:09 -0000	1.2
@@ -16,11 +16,10 @@
 import org.w3c.css.values.CssValue;
 
 /**
+ * @spec http://www.w3.org/TR/2008/REC-CSS2-20080411/visuren.html#propdef-z-index
  */
 public class CssZIndex extends org.w3c.css.properties.css.CssZIndex {
 
-    CssValue value;
-
     /**
      * Create a new CssZIndex
      */
@@ -83,13 +82,6 @@
         this(ac, expression, false);
     }
 
-    /**
-     * Returns a string representation of the object.
-     */
-    public String toString() {
-        return value.toString();
-    }
-
     public boolean isDefault() {
         return (auto == value);
     }

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