mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-27 21:38:34 +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.")
|