mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
212 B
Python
12 lines
212 B
Python
|
import WebIDL
|
||
|
|
||
|
def WebIDLTest(parser, harness):
|
||
|
parser.parse("""
|
||
|
[Flippety]
|
||
|
interface TestExtendedAttr {
|
||
|
[Foopy] attribute byte b;
|
||
|
};
|
||
|
""")
|
||
|
|
||
|
results = parser.finish()
|