1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-24 01:08:50 +00:00
Files
UXP/dom/bindings/parser/tests/test_any_null.py
T

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.")