mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 10:30:55 +00:00
14 lines
209 B
Python
14 lines
209 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
interface A {
|
|
attribute long a;
|
|
};
|
|
|
|
interface B {
|
|
attribute A[] b;
|
|
};
|
|
""");
|
|
parser.finish()
|