comparison: dom/bindings/parser/tests/test_incomplete_parent.py
dom/bindings/parser/tests/test_incomplete_parent.py
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 import WebIDL |
|
2 |
|
3 def WebIDLTest(parser, harness): |
|
4 parser.parse(""" |
|
5 interface TestIncompleteParent : NotYetDefined { |
|
6 void foo(); |
|
7 }; |
|
8 |
|
9 interface NotYetDefined : EvenHigherOnTheChain { |
|
10 }; |
|
11 |
|
12 interface EvenHigherOnTheChain { |
|
13 }; |
|
14 """) |
|
15 |
|
16 parser.finish() |
|
17 |
|
18 harness.ok(True, "TestIncompleteParent interface parsed without error.") |