csswg/css3-images Overview.html,1.199,1.200 Overview.src.html,1.207,1.208

Update of /sources/public/csswg/css3-images
In directory hutz:/tmp/cvs-serv15735

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Remove the explicit grammar from repeating gradients in favor of just referring to the normal grammars, so I don't have sync errors anymore.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.html,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -d -r1.199 -r1.200
--- Overview.html	9 Nov 2011 21:23:02 -0000	1.199
+++ Overview.html	9 Nov 2011 21:32:35 -0000	1.200
@@ -651,11 +651,10 @@
    id=ltgradient>&lt;gradient></dfn> = [ &lt;linear-gradient> | &lt;radial-gradient> | &lt;repeating-linear-gradient> | &lt;repeating-radial-gradient> ]</pre>
 
   <p>where <a href="#ltlinear-gradient"><i>&lt;linear-gradient></i></a>, <a
-   href="#ltradial-gradient"><i>&lt;radial-gradient></i></a>, <a
-   href="#ltrepeating-linear-gradient"><i>&lt;repeating-linear-gradient></i></a>,
-   and <a
-   href="#ltrepeating-radial-gradient"><i>&lt;repeating-radial-gradient></i></a>
-   are defined in their applicable sections below.
+   href="#ltradial-gradient"><i>&lt;radial-gradient></i></a>,
+   <i>&lt;repeating-linear-gradient></i>, and
+   <i>&lt;repeating-radial-gradient></i> are defined in their applicable
+   sections below.
 
   <p>Gradients are a type of image, and can be used anywhere an image can,
    such as in the &lsquo;<code class=property>background-image</code>&rsquo;
@@ -1114,25 +1113,7 @@
    defines &lsquo;<code class=css>repeating-linear-gradient()</code>&rsquo;
    and &lsquo;<code class=css>repeating-radial-gradient()</code>&rsquo;
    functions. These two functions take the same values and are interpreted
-   the same as their respective non-repeating siblings defined previously:
-
-  <pre class=prod><code><dfn
-   id=ltrepeating-linear-gradient>&lt;repeating-linear-gradient></dfn> = repeating-linear-gradient(
-	[ [ &lt;angle> | [ to <a
-   href="#side-or-corner"><code>&lt;side-or-corner></code></a> ] ] ,]? 
-	&lt;color-stop>[, &lt;color-stop>]+
-)
-
-<dfn
-   id=ltrepeating-radial-gradient>&lt;repeating-radial-gradient></dfn> = repeating-radial-gradient(
-	[&lt;'background-position'&gt;,]? 
-	[[
-		[&lt;shape&gt; || &lt;size&gt;]
-		|
-		[&lt;length> | &lt;percentage>]{2}
-	],]? 
-	&lt;color-stop&gt;[, &lt;color-stop&gt;]+
-)</code></pre>
+   the same as their respective non-repeating siblings defined previously.
 
   <p>When rendered, however, the color-stops are repeated infinitely in both
    directions, with their positions shifted by multiples of the difference
@@ -2362,12 +2343,6 @@
    <li>&lt;radial-gradient>, <a href="#ltradial-gradient"
     title="&lt;radial-gradient>"><strong>5.2.1.</strong></a>
 
-   <li>&lt;repeating-linear-gradient>, <a href="#ltrepeating-linear-gradient"
-    title="&lt;repeating-linear-gradient>"><strong>5.3.</strong></a>
-
-   <li>&lt;repeating-radial-gradient>, <a href="#ltrepeating-radial-gradient"
-    title="&lt;repeating-radial-gradient>"><strong>5.3.</strong></a>
-
    <li>&lt;resolution>, <a href="#ltresolution"
     title="&lt;resolution>"><strong>3.</strong></a>
 

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.src.html,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -d -r1.207 -r1.208
--- Overview.src.html	9 Nov 2011 21:23:03 -0000	1.207
+++ Overview.src.html	9 Nov 2011 21:32:35 -0000	1.208
@@ -720,22 +720,7 @@
 	this specification defines ''repeating-linear-gradient()'' and 
 	''repeating-radial-gradient()'' functions.  These two functions take the 
 	same values and are interpreted the same as their respective non-repeating 
-	siblings defined previously:</p>
-
-	<pre class=prod><code><dfn>&lt;repeating-linear-gradient></dfn> = repeating-linear-gradient(
-	[ [ &lt;angle> | [ to <code>&lt;side-or-corner></code> ] ] ,]? 
-	&lt;color-stop>[, &lt;color-stop>]+
-)
-
-<dfn>&lt;repeating-radial-gradient></dfn> = repeating-radial-gradient(
-	[&lt;'background-position'&gt;,]? 
-	[[
-		[&lt;shape&gt; || &lt;size&gt;]
-		|
-		[&lt;length> | &lt;percentage>]{2}
-	],]? 
-	&lt;color-stop&gt;[, &lt;color-stop&gt;]+
-)</code></pre>
+	siblings defined previously.</p>
 
 	<p>When rendered, however, the color-stops are repeated infinitely in both 
 	directions, with their positions shifted by multiples of the difference 

Received on Wednesday, 9 November 2011 21:32:41 UTC