mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-03 20:30:00 +00:00
19 lines
389 B
Python
19 lines
389 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
interface TestIncompleteParent : NotYetDefined {
|
|
void foo();
|
|
};
|
|
|
|
interface NotYetDefined : EvenHigherOnTheChain {
|
|
};
|
|
|
|
interface EvenHigherOnTheChain {
|
|
};
|
|
""")
|
|
|
|
parser.finish()
|
|
|
|
harness.ok(True, "TestIncompleteParent interface parsed without error.")
|