Files
UXP-Fixed/dom/bindings/parser/tests/test_variadic_callback.py
2018-02-02 04:16:08 -05:00

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