mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
266 B
Python
12 lines
266 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
interface Test {
|
|
attribute long b;
|
|
};
|
|
""");
|
|
|
|
attr = parser.finish()[0].members[0]
|
|
harness.check(attr.type.filename(), '<builtin>', 'Filename on builtin type')
|