mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
ed510d3506
--HG-- rename : js/xpconnect/tests/mochitest/test_bug462428.html => dom/bindings/test/test_lookupGetter.html
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.")
|