summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_constructor_no_interface_object.py
blob: 2b09ae71e6958284186e39c10f0b5c4e5822b2c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def WebIDLTest(parser, harness):
    threw = False
    try:
        parser.parse("""
            [Constructor, NoInterfaceObject]
            interface TestConstructorNoInterfaceObject {
            };
        """)

        results = parser.finish()
    except:
        threw = True

    harness.ok(threw, "Should have thrown.")

    threw = False
    try:
        parser.parse("""
            [NoInterfaceObject, Constructor]
            interface TestConstructorNoInterfaceObject {
            };
        """)

        results = parser.finish()
    except:
        threw = True

    harness.ok(threw, "Should have thrown.")

    parser = parser.reset()

    parser.parse("""
        [NoInterfaceObject, NamedConstructor=FooBar]
        interface TestNamedConstructorNoInterfaceObject {
        };
    """)