2002/css-validator/org/w3c/css/properties/css3 CssBackgroundImage.java,1.1,1.2 CssBackgroundOrigin.java,1.4,1.5

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

Modified Files:
	CssBackgroundImage.java CssBackgroundOrigin.java 
Log Message:
@spec links

Index: CssBackgroundImage.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssBackgroundImage.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssBackgroundImage.java	4 Oct 2011 13:05:25 -0000	1.1
+++ CssBackgroundImage.java	24 Aug 2012 07:08:53 -0000	1.2
@@ -19,22 +19,7 @@
 import static org.w3c.css.values.CssOperator.COMMA;
 
 /**
- * http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-image
- * <p/>
- * Name: 	background-image
- * Value: 	&lt;bg-image&gt; [ , &lt;bg-image&gt; ]*
- * Initial: 	none
- * Applies to: 	all elements
- * Inherited: 	no
- * Percentages: 	N/A
- * Media: 	visual
- * Computed value: 	as specified, but with URIs made absolute
- * <p/>
- * This property sets the background image(s) of an element. Images are drawn
- * with the first specified one on top (closest to the user) and each
- * subsequent image behind the previous one. Where
- * <p/>
- * &lt;bg-image&gt; = &lt;image&gt; | none
+ * @spec http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-image
  */
 public class CssBackgroundImage extends org.w3c.css.properties.css.CssBackgroundImage {
 

Index: CssBackgroundOrigin.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssBackgroundOrigin.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssBackgroundOrigin.java	4 Oct 2011 13:05:25 -0000	1.4
+++ CssBackgroundOrigin.java	24 Aug 2012 07:08:53 -0000	1.5
@@ -22,23 +22,7 @@
 import static org.w3c.css.values.CssOperator.COMMA;
 
 /**
- * http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-origin
- * <p/>
- * Name: 	background-origin
- * Value: 	&lt;bg-origin&gt; [ , &lt;bg-origin&gt; ]*
- * Initial: 	padding-box
- * Applies to: 	all elements
- * Inherited: 	no
- * Percentages: 	N/A
- * Media: 	visual
- * Computed value: 	same as specified value
- * <p/>
- * For elements rendered as a single box, specifies the background positioning
- * area. For elements rendered as multiple boxes (e.g., inline boxes on several
- * lines, boxes on several pages) specifies which boxes 'box-decoration-break'
- * operates on to determine the background positioning area(s).
- * <p/>
- * &lt;bg-origin&gt; = border-box | padding-box | content-box
+ * @spec http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-origin
  */
 
 public class CssBackgroundOrigin extends org.w3c.css.properties.css.CssBackgroundOrigin {
@@ -135,7 +119,6 @@
      * @param style The CssStyle
      */
     public void addToStyle(ApplContext ac, CssStyle style) {
-        // TODO FIXME -> in CssStyle
         if (((Css3Style) style).cssBackgroundOrigin != null)
             style.addRedefinitionWarning(ac, this);
         ((Css3Style) style).cssBackgroundOrigin = this;

Received on Friday, 24 August 2012 07:08:56 UTC