mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
11 lines
260 B
Python
11 lines
260 B
Python
#!/usr/bin/python
|
|
|
|
from utils import mathfont
|
|
import fontforge
|
|
|
|
v = mathfont.em / 2
|
|
f = mathfont.create("xheight%d" % v)
|
|
g = f.createChar(ord('x'))
|
|
mathfont.drawRectangleGlyph(g, mathfont.em, v, 0)
|
|
assert f.xHeight == v, "Bad x-height value!"
|
|
mathfont.save(f)
|