blob: f2a0177ced574a4fa211627e29b62b2b555425bf [file] [log] [blame] [edit]
import WebIDL
def WebIDLTest(parser, harness):
threw = False
try:
parser.parse(
"""
interface NullableVoid {
void? foo();
};
"""
)
parser.finish()
except WebIDL.WebIDLError:
threw = True
harness.ok(threw, "Should have thrown.")