1
0
mirror of https://github.com/classilla/tenfourfox.git synced 2025-03-05 17:31:09 +00:00
tenfourfox/dom/bindings/parser/tests/test_variadic_callback.py
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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.")