- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 08 Oct 2012 12:20:25 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory hutz:/tmp/cvs-serv24743/css3
Modified Files:
CssAnimationName.java
Log Message:
animation name warning removed
Index: CssAnimationName.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssAnimationName.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssAnimationName.java 8 Oct 2012 09:06:43 -0000 1.1
+++ CssAnimationName.java 8 Oct 2012 12:20:23 -0000 1.2
@@ -5,7 +5,6 @@
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css3;
-import org.w3c.css.properties.PropertiesLoader;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
@@ -34,9 +33,9 @@
if (none.equals(ident)) {
return none;
}
- if (PropertiesLoader.getProfile(ac.getPropertyKey()).getProperty(ident.toString()) == null) {
- ac.getFrame().addWarning("noexproperty", ident.toString());
- }
+ // here we are not matching @keyframes to raise a warning
+ // it might be done in findConflict
+ // TODO @keyframe check
return ident;
}
Received on Monday, 8 October 2012 12:20:26 UTC