mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
ed510d3506
--HG-- rename : js/xpconnect/tests/mochitest/test_bug462428.html => dom/bindings/test/test_lookupGetter.html
11 lines
249 B
Python
11 lines
249 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
callback TestVariadicCallback = any(any... arguments);
|
|
""")
|
|
|
|
results = parser.finish()
|
|
|
|
harness.ok(True, "TestVariadicCallback callback parsed without error.")
|