2002/css-validator/org/w3c/css/properties/css1 CssCounterIncrement.java,1.4,1.5 CssCounterReset.java,1.4,1.5 CssQuotes.java,1.4,1.5

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

Modified Files:
	CssCounterIncrement.java CssCounterReset.java CssQuotes.java 
Log Message:
redone the Media Features of media queries, up to date per http://www.w3.org/TR/2010/CR-css3-mediaqueries-20100727/, todo, parsing of media in HTML form

Index: CssCounterIncrement.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/CssCounterIncrement.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssCounterIncrement.java	27 Sep 2011 08:15:45 -0000	1.4
+++ CssCounterIncrement.java	21 Oct 2011 01:49:10 -0000	1.5
@@ -112,13 +112,13 @@
 		    } else {
 			throw new InvalidParamException("value",
 							expression.floatValue(),
-							getPropertyName(), ac);
+							getFeatureName(), ac);
 		    }
 		}
 	    } else {
 		throw new InvalidParamException("value",
 						expression.floatValue(),
-						getPropertyName(), ac);
+						getFeatureName(), ac);
 	    }
 	    values.addElement(val);
 	    expression.next();

Index: CssCounterReset.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/CssCounterReset.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssCounterReset.java	27 Sep 2011 08:15:45 -0000	1.4
+++ CssCounterReset.java	21 Oct 2011 01:49:10 -0000	1.5
@@ -113,13 +113,13 @@
 		    } else {
 			throw new InvalidParamException("value",
 							expression.floatValue(),
-							getPropertyName(), ac);
+							getFeatureName(), ac);
 		    }
 		}
 	    } else {
 		throw new InvalidParamException("value",
 						expression.floatValue(),
-						getPropertyName(), ac);
+						getFeatureName(), ac);
 	    }
 	    values.addElement(val);
 	    expression.next();

Index: CssQuotes.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/CssQuotes.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssQuotes.java	27 Sep 2011 08:15:45 -0000	1.4
+++ CssQuotes.java	21 Oct 2011 01:49:10 -0000	1.5
@@ -115,12 +115,12 @@
 		} else {
 		    throw new InvalidParamException("value",
 						    expression.floatValue(),
-						    getPropertyName(), ac);
+						    getFeatureName(), ac);
 		}
 	    } else {
 		throw new InvalidParamException("value",
 						expression.floatValue(),
-						getPropertyName(), ac);
+						getFeatureName(), ac);
 	    }
 	    values.addElement(val);
 	    expression.next();

Received on Friday, 21 October 2011 01:49:52 UTC