Files
UXP-Fixed/dom/bindings/parser/tests/test_nullable_void.py
2018-02-02 04:16:08 -05:00

15 lines
291 B
Python

def WebIDLTest(parser, harness):
threw = False
try:
parser.parse("""
interface NullableVoid {
void? foo();
};
""")
results = parser.finish()
except:
threw = True
harness.ok(threw, "Should have thrown.")