mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
15 lines
345 B
Python
15 lines
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.")
|