svg2: Allow negative elliptical arc radii in path data grammar per th...

details:   https://svgwg.org/hg/svg2/rev/dec9b5167459
branches:  
changeset: 391:dec9b5167459
user:      Cameron McCormack <cam@mcc.id.au>
date:      Thu Sep 27 16:47:02 2012 +1000
description:
Allow negative elliptical arc radii in path data grammar per the out-of-range value processing in implnote. (ISSUE-2439)

diffstat:

 master/paths.html |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (22 lines):

diff --git a/master/paths.html b/master/paths.html
--- a/master/paths.html
+++ b/master/paths.html
@@ -752,17 +752,17 @@ smooth-quadratic-bezier-curveto-argument
     coordinate-pair
     | coordinate-pair comma-wsp? smooth-quadratic-bezier-curveto-argument-sequence
 elliptical-arc:
     ( "A" | "a" ) wsp* elliptical-arc-argument-sequence
 elliptical-arc-argument-sequence:
     elliptical-arc-argument
     | elliptical-arc-argument comma-wsp? elliptical-arc-argument-sequence
 elliptical-arc-argument:
-    nonnegative-number comma-wsp? nonnegative-number comma-wsp? 
+    number comma-wsp? number comma-wsp? 
         number comma-wsp flag comma-wsp? flag comma-wsp? coordinate-pair
 coordinate-pair:
     coordinate comma-wsp? coordinate
 coordinate:
     number
 nonnegative-number:
     integer-constant
     | floating-point-constant

Received on Thursday, 27 September 2012 06:49:07 UTC