- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 05 Oct 2011 11:46:45 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css
In directory hutz:/tmp/cvs-serv14860/org/w3c/css/properties/css
Modified Files:
CssAzimuth.java CssBackground.java
CssBackgroundAttachment.java CssBackgroundClip.java
CssBackgroundColor.java CssBackgroundImage.java
CssBackgroundOrigin.java CssBackgroundPosition.java
CssBackgroundRepeat.java CssBackgroundSize.java
Log Message:
@since info
Index: CssBackgroundRepeat.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundRepeat.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- CssBackgroundRepeat.java 4 Oct 2011 13:05:24 -0000 1.5
+++ CssBackgroundRepeat.java 5 Oct 2011 11:46:42 -0000 1.6
@@ -13,22 +13,7 @@
import org.w3c.css.values.CssIdent;
/**
- * http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-repeat
- * <p/>
- * Name: background-repeat
- * Value: <repeat-style> [ , <repeat-style> ]*
- * Initial: repeat
- * Applies to: all elements
- * Inherited: no
- * Percentages: N/A
- * Media: visual
- * Computed value: as specified
- * <p/>
- * Specifies how background images are tiled after they have been sized and
- * positioned. Where
- * <p/>
- * <repeat-style> = repeat-x | repeat-y | [repeat | space |
- * round | no-repeat]{1,2}
+ * @since CSS1
*/
public class CssBackgroundRepeat extends CssProperty {
public final static CssIdent repeat;
Index: CssBackgroundColor.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundColor.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssBackgroundColor.java 4 Oct 2011 13:05:24 -0000 1.4
+++ CssBackgroundColor.java 5 Oct 2011 11:46:42 -0000 1.5
@@ -15,19 +15,7 @@
import org.w3c.css.values.CssValue;
/**
- * http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-color
- *
- * Name: background-color
- * Value: <color>
- * Initial: transparent
- * Applies to: all elements
- * Inherited: no
- * Percentages: N/A
- * Media: visual
- * Computed value: the computed color(s)
- *
- * This property sets the background color of an element. The color is drawn
- * behind any background images.
+ * @since CSS1
*/
public class CssBackgroundColor extends CssProperty {
Index: CssBackgroundAttachment.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundAttachment.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- CssBackgroundAttachment.java 4 Oct 2011 13:05:23 -0000 1.5
+++ CssBackgroundAttachment.java 5 Oct 2011 11:46:42 -0000 1.6
@@ -14,7 +14,7 @@
import org.w3c.css.values.CssExpression;
/**
- *
+ * @since CSS1
*/
public class CssBackgroundAttachment extends CssProperty {
Index: CssBackground.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackground.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- CssBackground.java 4 Oct 2011 13:05:23 -0000 1.10
+++ CssBackground.java 5 Oct 2011 11:46:42 -0000 1.11
@@ -15,6 +15,7 @@
import org.w3c.css.values.CssValue;
/**
+ * @since CSS1
*/
public class CssBackground extends CssProperty {
Index: CssBackgroundPosition.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundPosition.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- CssBackgroundPosition.java 4 Oct 2011 13:05:24 -0000 1.8
+++ CssBackgroundPosition.java 5 Oct 2011 11:46:42 -0000 1.9
@@ -18,35 +18,7 @@
import org.w3c.css.values.CssValueList;
/**
- * http://www.w3.org/TR/2009/CR-css3-background-20091217/#background-position
- * <p/>
- * Name: background-position
- * Value: <bg-position> [ , <bg-position> ]*
- * Initial: 0% 0%
- * Applies to: all elements
- * Inherited: no
- * Percentages: refer to size of background positioning area minus size of
- * background image; see text
- * Media: visual
- * Computed value: If one or two values are specified, for a <length>
- * the absolute value, otherwise a percentage. If three or
- * four values are specified, two pairs of a keyword plus a
- * length or percentage.
- * <p/>
- * <p/>
- * If background images have been specified, this property specifies their
- * initial position (after any resizing) within their corresponding
- * background positioning area.
- * <p/>
- * Where
- * <p/>
- * <bg-position> = [
- * [ [ <percentage> | <length> | left | center | right ] ]
- * [ [ <percentage> | <length> | top | center | bottom ] ]?
- * |
- * [ center | [ left | right ] [ <percentage> | <length> ]? ] ||
- * [ center | [ top | bottom ] [ <percentage> | <length> ]? ]
- * ]
+ * @since CSS1
*/
public class CssBackgroundPosition extends CssProperty {
Index: CssAzimuth.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssAzimuth.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CssAzimuth.java 11 Sep 2011 20:30:22 -0000 1.3
+++ CssAzimuth.java 5 Oct 2011 11:46:42 -0000 1.4
@@ -14,6 +14,7 @@
import org.w3c.css.values.CssValue;
/**
+ * @since CSS2
* @version $Revision$
*/
public class CssAzimuth extends CssProperty {
Index: CssBackgroundImage.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundImage.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssBackgroundImage.java 4 Oct 2011 13:05:24 -0000 1.4
+++ CssBackgroundImage.java 5 Oct 2011 11:46:42 -0000 1.5
@@ -13,6 +13,7 @@
import org.w3c.css.values.CssExpression;
/**
+ * @since CSS1
*/
public class CssBackgroundImage extends CssProperty {
Object url = null;
Index: CssBackgroundSize.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundSize.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- CssBackgroundSize.java 4 Oct 2011 13:05:24 -0000 1.5
+++ CssBackgroundSize.java 5 Oct 2011 11:46:42 -0000 1.6
@@ -13,23 +13,7 @@
import org.w3c.css.values.CssExpression;
/**
- * http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background-size
- * <p/>
- * <p/>
- * Name: background-size
- * Value: <bg-size> [ , <bg-size> ]*
- * Initial: auto
- * Applies to: all elements
- * Inherited: no
- * Percentages: see text
- * Media: visual
- * Computed value: for <length> the absolute value, otherwise as
- * specified
- * <p/>
- * Specifies the size of the background images. Where
- * <p/>
- * <bg-size> = [ <length> | <percentage> | auto ]{1,2} |
- * cover | contain
+ * @since CSS3
*/
public class CssBackgroundSize extends CssProperty {
Index: CssBackgroundOrigin.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundOrigin.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- CssBackgroundOrigin.java 4 Oct 2011 13:05:24 -0000 1.6
+++ CssBackgroundOrigin.java 5 Oct 2011 11:46:42 -0000 1.7
@@ -15,24 +15,8 @@
import org.w3c.css.values.CssExpression;
/**
- * 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
- */
+ * @since CSS3
+*/
public class CssBackgroundOrigin extends CssProperty {
Index: CssBackgroundClip.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundClip.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CssBackgroundClip.java 4 Oct 2011 13:05:23 -0000 1.4
+++ CssBackgroundClip.java 5 Oct 2011 11:46:42 -0000 1.5
@@ -14,6 +14,7 @@
import org.w3c.css.values.CssExpression;
/**
+ * @since CSS3
*/
public class CssBackgroundClip extends CssProperty {
Received on Wednesday, 5 October 2011 11:46:51 UTC