servo-script-bindings 0.3.0

A component of the servo web-engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
def WebIDLTest(parser, harness):
    parser.parse(
        """
        interface ForwardDeclared;
        interface ForwardDeclared;

        interface TestForwardDecl {
          attribute ForwardDeclared foo;
        };
    """
    )

    parser.finish()

    harness.ok(True, "TestForwardDeclared interface parsed without error.")