2002/css-validator/org/w3c/css/properties/css3 Css3Style.java,1.79,1.80 CssRenderIntent.java,1.3,NONE

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

Modified Files:
	Css3Style.java 
Removed Files:
	CssRenderIntent.java 
Log Message:
removed property from css3, SVG was using the wrong accessor

Index: Css3Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/Css3Style.java,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -d -r1.79 -r1.80
--- Css3Style.java	5 Sep 2012 09:37:40 -0000	1.79
+++ Css3Style.java	5 Sep 2012 09:42:27 -0000	1.80
@@ -64,7 +64,6 @@
 
 public class Css3Style extends ATSCStyle {
 
-	CssRenderIntent cssRenderIntent;
 	CssRubyPosition cssRubyPosition;
 	CssRubyAlign cssRubyAlign;
 	CssRubyOverhang cssRubyOverhang;
@@ -200,15 +199,6 @@
 		return cssOpacity;
 	}
 
-	public CssRenderIntent getRenderIntent() {
-		if (cssRenderIntent == null) {
-			cssRenderIntent =
-					(CssRenderIntent) style.CascadingOrder(new CssRenderIntent(),
-							style, selector);
-		}
-		return cssRenderIntent;
-	}
-
 	public CssRubyPosition getRubyPosition() {
 		if (cssRubyPosition == null) {
 			cssRubyPosition =

--- CssRenderIntent.java DELETED ---

Received on Wednesday, 5 September 2012 09:42:40 UTC