csswg/css3-images Overview.html,1.197,1.198 Overview.src.html,1.205,1.206

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

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Fix error in expanded grammar, simplify simple grammar for radial-gradient()

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.html,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -d -r1.197 -r1.198
--- Overview.html	9 Nov 2011 01:09:43 -0000	1.197
+++ Overview.html	9 Nov 2011 01:38:15 -0000	1.198
@@ -861,12 +861,12 @@
   <pre class=prod>
 <dfn
    id=ltradial-gradient>&lt;radial-gradient></dfn> = radial-gradient(
-  [ [ <a
-   href="#ltshapegt"><var>&lt;shape&gt;</var></a> , ] |
-    [ <a
+  [ <a
+   href="#ltshapegt"><var>&lt;shape&gt;</var></a> , |
+    <a
    href="#ltshapegt"><var>&lt;shape&gt;</var></a>? [ at <a
    href="#ltpositiongt"><var>&lt;position&gt;</var></a> || to <a
-   href="#ltextentgt"><var>&lt;extent&gt;</var></a> ] , ]
+   href="#ltextentgt"><var>&lt;extent&gt;</var></a> ] ,
   ]?
   <var>&lt;color-stop&gt;</var> [ , <var>&lt;color-stop&gt;</var> ]+
 )</pre>
@@ -980,10 +980,10 @@
    class=css>radial-gradient()</code>&rsquo; is thus:
 
   <pre>&lt;radial-gradient> = radial-gradient(
-  [ [ [ circle | ellipse ]  , ] |
-    [ [ circle | ellipse ]? [ at &lt;position> || to &lt;extent-keyword> ] , ] |
-    [ circle? &lt;length>, ] |
-    [ ellipse? [&lt;length> | &lt;percentage>]{2} ]
+  [ [ circle | ellipse ]  , |
+    [ circle | ellipse ]? [ at &lt;position> || to &lt;extent-keyword> ] , |
+    circle?               [ at &lt;position> || to &lt;length> ] , |
+    ellipse?              [ at &lt;position> || to [&lt;length> | &lt;percentage>]{2} ] , 
   ]?
   &lt;color-stop> [ , &lt;color-stop> ]+
 )

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.src.html,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -d -r1.205 -r1.206
--- Overview.src.html	9 Nov 2011 01:09:43 -0000	1.205
+++ Overview.src.html	9 Nov 2011 01:38:15 -0000	1.206
@@ -549,8 +549,8 @@
 
 	<pre class=prod>
 <dfn>&lt;radial-gradient></dfn> = radial-gradient(
-  [ [ <var>&lt;shape&gt;</var> , ] |
-    [ <var>&lt;shape&gt;</var>? [ at <var>&lt;position&gt;</var> || to <var>&lt;extent&gt;</var> ] , ]
+  [ <var>&lt;shape&gt;</var> , |
+    <var>&lt;shape&gt;</var>? [ at <var>&lt;position&gt;</var> || to <var>&lt;extent&gt;</var> ] ,
   ]?
   <var>&lt;color-stop&gt;</var> [ , <var>&lt;color-stop&gt;</var> ]+
 )</pre>
@@ -631,10 +631,10 @@
 
   <p>The expanded grammar for ''radial-gradient()'' is thus:
 <pre>&lt;radial-gradient> = radial-gradient(
-  [ [ [ circle | ellipse ]  , ] |
-    [ [ circle | ellipse ]? [ at &lt;position> || to &lt;extent-keyword> ] , ] |
-    [ circle? &lt;length>, ] |
-    [ ellipse? [&lt;length> | &lt;percentage>]{2} ]
+  [ [ circle | ellipse ]  , |
+    [ circle | ellipse ]? [ at &lt;position> || to &lt;extent-keyword> ] , |
+    circle?               [ at &lt;position> || to &lt;length> ] , |
+    ellipse?              [ at &lt;position> || to [&lt;length> | &lt;percentage>]{2} ] , 
   ]?
   &lt;color-stop> [ , &lt;color-stop> ]+
 )

Received on Wednesday, 9 November 2011 01:38:22 UTC