mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-03-05 17:31:09 +00:00
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.")
|