mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
296 B
Python
15 lines
296 B
Python
|
def WebIDLTest(parser, harness):
|
||
|
threw = False
|
||
|
try:
|
||
|
parser.parse("""
|
||
|
interface DoubleNull {
|
||
|
attribute any? foo;
|
||
|
};
|
||
|
""")
|
||
|
|
||
|
results = parser.finish()
|
||
|
except:
|
||
|
threw = True
|
||
|
|
||
|
harness.ok(threw, "Should have thrown.")
|