| Index: lib/html/scripts/idlparser.py
|
| diff --git a/lib/html/scripts/idlparser.py b/lib/html/scripts/idlparser.py
|
| index 65ccdacacf9ed38cfd18e3bac1801b258ef23fda..fa905762574eac4cb28c0d308a667c4a23dabdcf 100755
|
| --- a/lib/html/scripts/idlparser.py
|
| +++ b/lib/html/scripts/idlparser.py
|
| @@ -90,7 +90,7 @@ class IDLParser(object):
|
| [MAYBE(ExtAttrs), 'interface', Id, MAYBE(_ParentInterfaces),
|
| MAYBE(['{', MAYBE(MANY(_Member)), '}']), ';'],
|
| # WebKit:
|
| - [OR('interface', 'exception'), MAYBE(ExtAttrs), Id, MAYBE(_ParentInterfaces),
|
| + [MAYBE(ExtAttrs), OR('interface', 'exception'), MAYBE(ExtAttrs), Id, MAYBE(_ParentInterfaces),
|
| MAYBE(['{', MAYBE(MANY(_Member)), '}']), MAYBE(';')],
|
| # FremontCut:
|
| [MAYBE(_Annotations), MAYBE(ExtAttrs), 'interface',
|
| @@ -171,8 +171,10 @@ class IDLParser(object):
|
| [MAYBE(ExtAttrs), MAYBE(Stringifier), MAYBE(ReadOnly),
|
| 'attribute', Type, Id, MAYBE(_AttrRaises), ';'],
|
| # WebKit:
|
| - [MAYBE(Stringifier), MAYBE(Static), MAYBE(ReadOnly), 'attribute',
|
| - MAYBE(ExtAttrs), Type, Id, MAYBE(_AttrRaises), ';'],
|
| + [
|
| + MAYBE(Stringifier),
|
| + MAYBE(ExtAttrs), MAYBE(Static), MAYBE(ReadOnly), 'attribute', MAYBE(ExtAttrs),
|
| + Type, Id, MAYBE(_AttrRaises), ';'],
|
| # FremontCut:
|
| [MAYBE(_Annotations), MAYBE(ExtAttrs),
|
| MAYBE(_AttrGetterSetter), MAYBE(Stringifier), MAYBE(ReadOnly),
|
|
|