- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 09 Nov 2011 21:32:37 +0000
- To: public-css-commits@w3.org
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><gradient></dfn> = [ <linear-gradient> | <radial-gradient> | <repeating-linear-gradient> | <repeating-radial-gradient> ]</pre>
<p>where <a href="#ltlinear-gradient"><i><linear-gradient></i></a>, <a
- href="#ltradial-gradient"><i><radial-gradient></i></a>, <a
- href="#ltrepeating-linear-gradient"><i><repeating-linear-gradient></i></a>,
- and <a
- href="#ltrepeating-radial-gradient"><i><repeating-radial-gradient></i></a>
- are defined in their applicable sections below.
+ href="#ltradial-gradient"><i><radial-gradient></i></a>,
+ <i><repeating-linear-gradient></i>, and
+ <i><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 ‘<code class=property>background-image</code>’
@@ -1114,25 +1113,7 @@
defines ‘<code class=css>repeating-linear-gradient()</code>’
and ‘<code class=css>repeating-radial-gradient()</code>’
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><repeating-linear-gradient></dfn> = repeating-linear-gradient(
- [ [ <angle> | [ to <a
- href="#side-or-corner"><code><side-or-corner></code></a> ] ] ,]?
- <color-stop>[, <color-stop>]+
-)
-
-<dfn
- id=ltrepeating-radial-gradient><repeating-radial-gradient></dfn> = repeating-radial-gradient(
- [<'background-position'>,]?
- [[
- [<shape> || <size>]
- |
- [<length> | <percentage>]{2}
- ],]?
- <color-stop>[, <color-stop>]+
-)</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><radial-gradient>, <a href="#ltradial-gradient"
title="<radial-gradient>"><strong>5.2.1.</strong></a>
- <li><repeating-linear-gradient>, <a href="#ltrepeating-linear-gradient"
- title="<repeating-linear-gradient>"><strong>5.3.</strong></a>
-
- <li><repeating-radial-gradient>, <a href="#ltrepeating-radial-gradient"
- title="<repeating-radial-gradient>"><strong>5.3.</strong></a>
-
<li><resolution>, <a href="#ltresolution"
title="<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><repeating-linear-gradient></dfn> = repeating-linear-gradient(
- [ [ <angle> | [ to <code><side-or-corner></code> ] ] ,]?
- <color-stop>[, <color-stop>]+
-)
-
-<dfn><repeating-radial-gradient></dfn> = repeating-radial-gradient(
- [<'background-position'>,]?
- [[
- [<shape> || <size>]
- |
- [<length> | <percentage>]{2}
- ],]?
- <color-stop>[, <color-stop>]+
-)</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