mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 07:30:08 +00:00
8 lines
252 B
Python
8 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.")
|