Re: [csswg-drafts] [css-values] Fallback value of ex height (#5243)

WebKit does:

```C++
            Glyph xGlyph = glyphForCharacter('x');
            if (xGlyph)
                xHeight = -CGRectGetMinY(platformBoundsForGlyph(xGlyph));
            else
                xHeight = CTFontGetXHeight(m_platformData.font());
```

-- 
GitHub Notification of comment by litherum
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/5243#issuecomment-652596863 using your GitHub account

Received on Wednesday, 1 July 2020 19:09:47 UTC