mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
11 lines
266 B
Python
11 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')
|