csswg/css3-images Overview.html,1.240,1.241 Overview.src.html,1.247,1.248

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>
 &lt;radial-gradient> = radial-gradient(
-  [ [ &lt;shape> || &lt;size> ] [ at &lt;position> ]? ,]?
+  [ [ &lt;shape> || &lt;size> ] [ at &lt;position> ]? , |
+    at &lt;position>, 
+  ]?
   &lt;color-stop> [ , &lt;color-stop> ]+
 )</pre>
 
@@ -1151,7 +1153,8 @@
 &lt;radial-gradient> = radial-gradient(
   [ [ circle               || &lt;length> ]                          [ at &lt;position> ]? , | 
     [ ellipse              || [ &lt;length> | &lt;percentage> ]{2} ]    [ at &lt;position> ]? , |
-    [ [ circle | ellipse ] || &lt;extent-keyword> ]                  [ at &lt;position> ]? ,
+    [ [ circle | ellipse ] || &lt;extent-keyword> ]                  [ at &lt;position> ]? , |
+    at &lt;position> ,
   ]?
   &lt;color-stop> [ , &lt;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>
 &lt;radial-gradient> = radial-gradient(
-  [ [ &lt;shape> || &lt;size> ] [ at &lt;position> ]? ,]?
+  [ [ &lt;shape> || &lt;size> ] [ at &lt;position> ]? , |
+    at &lt;position>, 
+  ]?
   &lt;color-stop> [ , &lt;color-stop> ]+
 )</pre>
 
@@ -717,7 +719,8 @@
 &lt;radial-gradient> = radial-gradient(
   [ [ circle               || &lt;length> ]                          [ at &lt;position> ]? , | 
     [ ellipse              || [ &lt;length> | &lt;percentage> ]{2} ]    [ at &lt;position> ]? , |
-    [ [ circle | ellipse ] || &lt;extent-keyword> ]                  [ at &lt;position> ]? ,
+    [ [ circle | ellipse ] || &lt;extent-keyword> ]                  [ at &lt;position> ]? , |
+    at &lt;position> ,
   ]?
   &lt;color-stop> [ , &lt;color-stop> ]+
 )

Received on Thursday, 1 December 2011 22:45:44 UTC