servo-script-bindings 0.3.0

A component of the servo web-engine.
Documentation
1
2
3
4
5
6
7
8
9
10
def WebIDLTest(parser, harness):
    parser.parse(
        """
        callback TestVariadicCallback = any(any... arguments);
    """
    )

    parser.finish()

    harness.ok(True, "TestVariadicCallback callback parsed without error.")