- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 09 Nov 2011 01:38:17 +0000
- To: public-css-commits@w3.org
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><radial-gradient></dfn> = radial-gradient( - [ [ <a - href="#ltshapegt"><var><shape></var></a> , ] | - [ <a + [ <a + href="#ltshapegt"><var><shape></var></a> , | + <a href="#ltshapegt"><var><shape></var></a>? [ at <a href="#ltpositiongt"><var><position></var></a> || to <a - href="#ltextentgt"><var><extent></var></a> ] , ] + href="#ltextentgt"><var><extent></var></a> ] , ]? <var><color-stop></var> [ , <var><color-stop></var> ]+ )</pre> @@ -980,10 +980,10 @@ class=css>radial-gradient()</code>’ is thus: <pre><radial-gradient> = radial-gradient( - [ [ [ circle | ellipse ] , ] | - [ [ circle | ellipse ]? [ at <position> || to <extent-keyword> ] , ] | - [ circle? <length>, ] | - [ ellipse? [<length> | <percentage>]{2} ] + [ [ circle | ellipse ] , | + [ circle | ellipse ]? [ at <position> || to <extent-keyword> ] , | + circle? [ at <position> || to <length> ] , | + ellipse? [ at <position> || to [<length> | <percentage>]{2} ] , ]? <color-stop> [ , <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><radial-gradient></dfn> = radial-gradient( - [ [ <var><shape></var> , ] | - [ <var><shape></var>? [ at <var><position></var> || to <var><extent></var> ] , ] + [ <var><shape></var> , | + <var><shape></var>? [ at <var><position></var> || to <var><extent></var> ] , ]? <var><color-stop></var> [ , <var><color-stop></var> ]+ )</pre> @@ -631,10 +631,10 @@ <p>The expanded grammar for ''radial-gradient()'' is thus: <pre><radial-gradient> = radial-gradient( - [ [ [ circle | ellipse ] , ] | - [ [ circle | ellipse ]? [ at <position> || to <extent-keyword> ] , ] | - [ circle? <length>, ] | - [ ellipse? [<length> | <percentage>]{2} ] + [ [ circle | ellipse ] , | + [ circle | ellipse ]? [ at <position> || to <extent-keyword> ] , | + circle? [ at <position> || to <length> ] , | + ellipse? [ at <position> || to [<length> | <percentage>]{2} ] , ]? <color-stop> [ , <color-stop> ]+ )
Received on Wednesday, 9 November 2011 01:38:22 UTC