- From: Nikos Andronikos via GitHub <sysbot+gh@w3.org>
- Date: Mon, 11 Jul 2016 05:23:12 +0000
- To: public-svg-issues@w3.org
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