- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 01 Dec 2011 22:45:42 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-images
In directory hutz:/tmp/cvs-serv4940
Modified Files:
Overview.html Overview.src.html
Log Message:
Grammar fix - it accidentally disallowed r-g(at top left, ...)
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.html,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -d -r1.240 -r1.241
--- Overview.html 1 Dec 2011 22:35:45 -0000 1.240
+++ Overview.html 1 Dec 2011 22:45:40 -0000 1.241
@@ -1015,7 +1015,9 @@
<pre>
<radial-gradient> = radial-gradient(
- [ [ <shape> || <size> ] [ at <position> ]? ,]?
+ [ [ <shape> || <size> ] [ at <position> ]? , |
+ at <position>,
+ ]?
<color-stop> [ , <color-stop> ]+
)</pre>
@@ -1151,7 +1153,8 @@
<radial-gradient> = radial-gradient(
[ [ circle || <length> ] [ at <position> ]? , |
[ ellipse || [ <length> | <percentage> ]{2} ] [ at <position> ]? , |
- [ [ circle | ellipse ] || <extent-keyword> ] [ at <position> ]? ,
+ [ [ circle | ellipse ] || <extent-keyword> ] [ at <position> ]? , |
+ at <position> ,
]?
<color-stop> [ , <color-stop> ]+
)
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.src.html,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -d -r1.247 -r1.248
--- Overview.src.html 1 Dec 2011 22:35:45 -0000 1.247
+++ Overview.src.html 1 Dec 2011 22:45:40 -0000 1.248
@@ -622,7 +622,9 @@
<pre>
<radial-gradient> = radial-gradient(
- [ [ <shape> || <size> ] [ at <position> ]? ,]?
+ [ [ <shape> || <size> ] [ at <position> ]? , |
+ at <position>,
+ ]?
<color-stop> [ , <color-stop> ]+
)</pre>
@@ -717,7 +719,8 @@
<radial-gradient> = radial-gradient(
[ [ circle || <length> ] [ at <position> ]? , |
[ ellipse || [ <length> | <percentage> ]{2} ] [ at <position> ]? , |
- [ [ circle | ellipse ] || <extent-keyword> ] [ at <position> ]? ,
+ [ [ circle | ellipse ] || <extent-keyword> ] [ at <position> ]? , |
+ at <position> ,
]?
<color-stop> [ , <color-stop> ]+
)
Received on Thursday, 1 December 2011 22:45:44 UTC