2002/css-validator/org/w3c/css/values ATSCColor.java,1.2,1.3 CssAngle.java,1.2,1.3 CssColor.java,1.7,1.8 CssColorCSS1.java,1.3,1.4 CssColorCSS2.java,1.3,1.4 CssDate.java,1.1,1.2 CssFrequency.java,1.2,1.3 CssFunction.java,1.2,1.3 CssIdent.java,1.2,1.3 CssLength.java,1.2,1.3 CssNumber.java,1.2,1.3 CssPercentage.java,1.2,1.3 CssResolution.java,1.1,1.2 CssString.java,1.2,1.3 CssTime.java,1.2,1.3 CssURL.java,1.2,1.3 CssUnicodeRange.java,1.2,1.3 CssValue.java,1.2,1.3

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

Modified Files:
	ATSCColor.java CssAngle.java CssColor.java CssColorCSS1.java 
	CssColorCSS2.java CssDate.java CssFrequency.java 
	CssFunction.java CssIdent.java CssLength.java CssNumber.java 
	CssPercentage.java CssResolution.java CssString.java 
	CssTime.java CssURL.java CssUnicodeRange.java CssValue.java 
Log Message:
All those changed made by Jean-Guilhem Rouel:

Huge patch, imports fixed (automatic)
Bug fixed: 372, 920, 778, 287, 696, 764, 233
Partial bug fix for 289

Issue with "inherit" in CSS2.
The validator now checks the number of values (extraneous values were previously ignored)




Index: CssResolution.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssResolution.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssResolution.java	3 Jan 2003 15:17:13 -0000	1.1
+++ CssResolution.java	8 Aug 2005 13:19:47 -0000	1.2
@@ -7,6 +7,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.2  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.1  2003/01/03 15:17:13  sijtsche
  * new value for media feature resolution
  *
@@ -22,8 +32,8 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
 
 /**

Index: CssColorCSS2.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssColorCSS2.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CssColorCSS2.java	30 Mar 2004 13:04:30 -0000	1.3
+++ CssColorCSS2.java	8 Aug 2005 13:19:47 -0000	1.4
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.4  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.3  2004/03/30 13:04:30  ylafon
  * Fixed integer and percentage mixed values
  *
@@ -22,9 +32,10 @@
 package org.w3c.css.values;
 
 import java.util.Hashtable;
-import org.w3c.css.util.Util;
-import org.w3c.css.util.InvalidParamException;
+
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
+import org.w3c.css.util.Util;
 
 /**
  *   <H3>
@@ -184,7 +195,7 @@
      * Create a new CssColorCSS2.
      */
     public CssColorCSS2() {
-	color = inherit;
+	//color = new CssIdent("");
     }
     
     /**

Index: CssColorCSS1.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssColorCSS1.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CssColorCSS1.java	30 Mar 2004 13:04:30 -0000	1.3
+++ CssColorCSS1.java	8 Aug 2005 13:19:46 -0000	1.4
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.4  2005/08/08 13:19:46  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.3  2004/03/30 13:04:30  ylafon
  * Fixed integer and percentage mixed values
  *
@@ -22,9 +32,10 @@
 package org.w3c.css.values;
 
 import java.util.Hashtable;
-import org.w3c.css.util.Util;
-import org.w3c.css.util.InvalidParamException;
+
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
+import org.w3c.css.util.Util;
 
 /**
  *   <H3>
@@ -184,7 +195,7 @@
      * Create a new CssColorCSS1
      */
     public CssColorCSS1() {
-	color = inherit;
+	//color = new CssIdent("");
     }
     
     /**

Index: CssURL.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssURL.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssURL.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssURL.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -18,11 +28,12 @@
  */
 package org.w3c.css.values;
 
-import java.net.URL;
 import java.net.MalformedURLException;
-import org.w3c.css.util.InvalidParamException;
-import org.w3c.css.util.HTTPURL;
+import java.net.URL;
+
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.HTTPURL;
+import org.w3c.css.util.InvalidParamException;
 
 /**
  *   <H3>

Index: CssValue.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssValue.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssValue.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssValue.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -27,8 +37,8 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 
 /**
  * @version $Revision$
@@ -64,5 +74,9 @@
     public void setCssVersion(String cssversion) {
 	this.cssversion = cssversion;
     }
+    
+    public boolean isDefault() {
+	return false;
+    }
 
 }

Index: CssString.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssString.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssString.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssString.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -28,8 +38,8 @@
 
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 
 /**
  * A CSS string.

Index: CssIdent.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssIdent.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssIdent.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssIdent.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -52,7 +62,7 @@
    * @param s The identificator
    */
   public CssIdent(String s) {
-    value = s;
+    value = s;   
   }  
   
   /**
@@ -61,7 +71,7 @@
    * @param s     the string representation of the identificator.
    * @param frame For errors and warnings reports.
    */  
-  public void set(String s, ApplContext ac) {
+  public void set(String s, ApplContext ac) {      
     value = s;
   }
 

Index: ATSCColor.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/ATSCColor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ATSCColor.java	8 Apr 2002 21:19:46 -0000	1.2
+++ ATSCColor.java	8 Aug 2005 13:19:46 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:46  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -19,9 +29,9 @@
 package org.w3c.css.values;
 
 import java.util.Hashtable;
-import org.w3c.css.util.Util;
-import org.w3c.css.util.InvalidParamException;
+
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 
 /**
  *   <H3>

Index: CssColor.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssColor.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- CssColor.java	30 Mar 2004 13:04:30 -0000	1.7
+++ CssColor.java	8 Aug 2005 13:19:46 -0000	1.8
@@ -8,15 +8,12 @@
 package org.w3c.css.values;
 
 import java.util.Hashtable;
-import org.w3c.css.util.Util;
-import org.w3c.css.util.InvalidParamException;
-import org.w3c.css.util.ApplContext;
-import org.w3c.css.values.CssAngle;
-import org.w3c.css.values.CssPercentage;
-import org.w3c.css.values.CssNumber;
-
 import java.util.Vector;
 
+import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
+import org.w3c.css.util.Util;
+
 /**
  *   <H3>
  *     &nbsp;&nbsp; Color units

Index: CssFunction.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssFunction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssFunction.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssFunction.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -24,7 +34,6 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
 
 /**

Index: CssTime.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssTime.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssTime.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssTime.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -21,9 +31,9 @@
  */
 package org.w3c.css.values;
 
+import org.w3c.css.util.ApplContext;
 import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
-import org.w3c.css.util.ApplContext;
 
 /**
  * <H3>Time</H3>

Index: CssUnicodeRange.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssUnicodeRange.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssUnicodeRange.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssUnicodeRange.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -8,8 +8,6 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
-import org.w3c.css.util.Util;
 import org.w3c.css.util.ApplContext;
 
 /**

Index: CssNumber.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssNumber.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssNumber.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssNumber.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -24,9 +34,9 @@
  */
 package org.w3c.css.values;
 
+import org.w3c.css.util.ApplContext;
 import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
-import org.w3c.css.util.ApplContext;
 
 /**
  * A CSS float number.

Index: CssDate.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssDate.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssDate.java	30 Jul 2003 06:53:44 -0000	1.1
+++ CssDate.java	8 Aug 2005 13:19:47 -0000	1.2
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.2  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.1  2003/07/30 06:53:44  sijtsche
  * date format dd/mm/yyyy
  *
@@ -24,9 +34,8 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
-import org.w3c.css.util.Util;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 
 /**
  * <H3>Date</H3>

Index: CssFrequency.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssFrequency.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssFrequency.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssFrequency.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -24,8 +34,8 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
 
 /**

Index: CssPercentage.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssPercentage.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssPercentage.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssPercentage.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -28,9 +38,9 @@
 
 package org.w3c.css.values;
 
+import org.w3c.css.util.ApplContext;
 import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
-import org.w3c.css.util.ApplContext;
 
 /**
  *   <H3>

Index: CssAngle.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssAngle.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssAngle.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssAngle.java	8 Aug 2005 13:19:46 -0000	1.3
@@ -6,6 +6,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:46  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -18,8 +28,8 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
 
 /**

Index: CssLength.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssLength.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CssLength.java	8 Apr 2002 21:19:46 -0000	1.2
+++ CssLength.java	8 Aug 2005 13:19:47 -0000	1.3
@@ -7,6 +7,16 @@
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
  * $Log$
+ * Revision 1.3  2005/08/08 13:19:47  ylafon
+ * All those changed made by Jean-Guilhem Rouel:
+ *
+ * Huge patch, imports fixed (automatic)
+ * Bug fixed: 372, 920, 778, 287, 696, 764, 233
+ * Partial bug fix for 289
+ *
+ * Issue with "inherit" in CSS2.
+ * The validator now checks the number of values (extraneous values were previously ignored)
+ *
  * Revision 1.2  2002/04/08 21:19:46  plehegar
  * New
  *
@@ -19,8 +29,8 @@
  */
 package org.w3c.css.values;
 
-import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.ApplContext;
+import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.util.Util;
 
 /**

Received on Monday, 8 August 2005 13:19:57 UTC