| Index: client/dom/scripts/idlparser.py
|
| diff --git a/client/dom/scripts/idlparser.py b/client/dom/scripts/idlparser.py
|
| index cf91ac26227f309e8dd915aadc2036101da9795a..fc223a0b0026c696fffd5c89a94318df355209ae 100755
|
| --- a/client/dom/scripts/idlparser.py
|
| +++ b/client/dom/scripts/idlparser.py
|
| @@ -355,7 +355,7 @@ class IDLParser(object):
|
|
|
| # Extended Attributes:
|
| def ExtAttrs():
|
| - return ['[', MANY(ExtAttr, ','), ']']
|
| + return ['[', MAYBE(MANY(ExtAttr, ',')), ']']
|
|
|
| def ExtAttr():
|
| return [Id, MAYBE(OR(['=', ExtAttrValue], ExtAttrArgList))]
|
|
|