- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 29 Aug 2012 10:08:50 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2
In directory hutz:/tmp/cvs-serv10808/css2
Modified Files:
Css2Style.java
Log Message:
new version of text-shadow
Index: Css2Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/Css2Style.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Css2Style.java 4 Aug 2012 21:17:05 -0000 1.7
+++ Css2Style.java 29 Aug 2012 10:08:48 -0000 1.8
@@ -7,6 +7,7 @@
package org.w3c.css.properties.css2;
import org.w3c.css.properties.aural.ACssStyle;
+import org.w3c.css.properties.css.CssTextShadow;
/**
* @version $Revision$
@@ -26,6 +27,11 @@
public org.w3c.css.properties.css.CssFontSizeAdjust cssFontSizeAdjust;
/**
+ * text properties
+ */
+ public CssTextShadow cssTextShadow;
+
+ /**
* Get the azimuth
*/
public org.w3c.css.properties.css.CssAzimuth getAzimuth() {
@@ -118,4 +124,18 @@
}
return cssFontSizeAdjust;
}
+
+ /**
+ * Get the text-shadow property
+ * @return a CssTextShadow instance
+ */
+ public final org.w3c.css.properties.css.CssTextShadow getTextShadow() {
+ if (cssTextShadow == null) {
+ cssTextShadow =
+ (org.w3c.css.properties.css.CssTextShadow) style.CascadingOrder(new org.w3c.css.properties.css.CssTextShadow(),
+ style, selector);
+ }
+ return cssTextShadow;
+ }
+
}
Received on Wednesday, 29 August 2012 10:08:52 UTC