mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
10 lines
249 B
Python
10 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.")
|