mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
391 B
Python
19 lines
391 B
Python
def WebIDLTest(parser, harness):
|
|
threw = False
|
|
try:
|
|
parser.parse("""
|
|
dictionary Foo {
|
|
short a;
|
|
};
|
|
|
|
dictionary Foo1 {
|
|
Foo[] b;
|
|
};
|
|
""")
|
|
results = parser.finish()
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Array must not contain dictionary "
|
|
"as element type.")
|