tenfourfox/dom/bindings/parser/tests/test_union_any.py

15 lines
313 B
Python
Raw Normal View History

2017-04-19 07:56:45 +00:00
def WebIDLTest(parser, harness):
threw = False
try:
parser.parse("""
interface AnyNotInUnion {
void foo((any or DOMString) arg);
};
""")
results = parser.finish()
except:
threw = True
harness.ok(threw, "Should have thrown.")