mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
* Update WebIDL.py * Update WebIDL.py * Add builtin-array.patch * Fix CodegenRust.py and Configuration.py * Fix missing downcasts * mach fmt * Update check and comment to explain why we need this check * Update Global of DissimilarOriginWindow.webidl
11 lines
262 B
Python
11 lines
262 B
Python
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")
|