[Webkit-unassigned] [Bug 267358] Emphasized text does not render on MDN, does on Chrome and Firefox

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Dec 17 23:35:38 PST 2024


https://bugs.webkit.org/show_bug.cgi?id=267358

--- Comment #7 from Karl Dubost <karlcow at apple.com> ---
https://searchfox.org/wubkat/rev/d46c14cf9008c4385cf0ac7919561b278d047e85/Source/WebCore/platform/graphics/coretext/FontCustomPlatformDataCoreText.cpp#147-158
```cpp
bool FontCustomPlatformData::supportsFormat(const String& format)
{
    return equalLettersIgnoringASCIICase(format, "truetype"_s)
        || equalLettersIgnoringASCIICase(format, "opentype"_s)
        || equalLettersIgnoringASCIICase(format, "woff2"_s)
        || equalLettersIgnoringASCIICase(format, "woff2-variations"_s)
        || equalLettersIgnoringASCIICase(format, "woff-variations"_s)
        || equalLettersIgnoringASCIICase(format, "truetype-variations"_s)
        || equalLettersIgnoringASCIICase(format, "opentype-variations"_s)
        || equalLettersIgnoringASCIICase(format, "woff"_s)
        || equalLettersIgnoringASCIICase(format, "svg"_s);
}
```

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20241218/91524cd4/attachment-0001.htm>


More information about the webkit-unassigned mailing list