mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
7 lines
252 B
Python
7 lines
252 B
Python
def WebIDLTest(parser, harness):
|
|
parser.parse("")
|
|
parser.finish()
|
|
harness.ok(True, "Parsing nothing doesn't throw.")
|
|
parser.parse("interface Foo {};")
|
|
parser.finish()
|
|
harness.ok(True, "Parsing a silly interface doesn't throw.")
|