зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
345 B
Python
16 строки
345 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
interface ForwardDeclared;
|
|
interface ForwardDeclared;
|
|
|
|
interface TestForwardDecl {
|
|
attribute ForwardDeclared foo;
|
|
};
|
|
""")
|
|
|
|
results = parser.finish()
|
|
|
|
harness.ok(True, "TestForwardDeclared interface parsed without error.")
|