Re: [svgwg] Incorrect syntax for <tspan>´s attributes

There's no intended trailing comma.

The equivalent grammar from SVG 1.1. is

```
list-of-Ts ::= T | T comma-wsp list-of-Ts
comma-wsp  ::= (wsp+ ","? wsp*) | ("," wsp*)
wsp        ::= (#x20 | #x9 | #xD | #xA)
```
So @SebastianZ has the correct grammar.

In quite a few places we have replaced these old list-of-T grammars 
with 
[<T>,?]+

Which allows a trailing comma. Backwards compatible but not ideal.
I'll try to track them all down.

-- 
GitHub Notification of comment by nikosandronikos
Please view or discuss this issue at 
https://github.com/w3c/svgwg/issues/191#issuecomment-231644602 using 
your GitHub account

Received on Monday, 11 July 2016 05:23:19 UTC