- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 24 Aug 2012 07:08:55 +0000
- To: www-validator-cvs@w3.org
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: <bg-image> [ , <bg-image> ]*
- * 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/>
- * <bg-image> = <image> | 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: <bg-origin> [ , <bg-origin> ]*
- * 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/>
- * <bg-origin> = 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