Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 import WebIDL
3 def WebIDLTest(parser, harness):
4 parser.parse("""
5 interface ForwardDeclared;
6 interface ForwardDeclared;
8 interface TestForwardDecl {
9 attribute ForwardDeclared foo;
10 };
11 """)
13 results = parser.finish()
15 harness.ok(True, "TestForwardDeclared interface parsed without error.")