blob: e2db398a0510ee1d3a2b26630d3b75e106e2ffa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- WebIDL.py
+++ WebIDL.py
@@ -1768,7 +1768,8 @@ class IDLInterface(IDLInterfaceOrNamespace):
identifier == "LegacyUnenumerableNamedProperties" or
identifier == "RunConstructorInCallerCompartment" or
identifier == "WantsEventListenerHooks" or
- identifier == "Serializable"):
+ identifier == "Serializable" or
+ identifier == "Abstract"):
# Known extended attributes that do not take values
if not attr.noArguments():
raise WebIDLError("[%s] must take no arguments" % identifier,
|