commit bf47558d8e140c34647772487c585e260df89fe5 parent 9598c17b4f72afd5d353c2fc2ef2c2b7d931469a Author: Henrik Skupin <mail@hskupin.info> Date: Thu, 23 Oct 2025 14:36:25 +0000 Bug 1991871 - [gfx] Use shared font list for Safe Mode as well. r=jfkthame Differential Revision: https://phabricator.services.mozilla.com/D269701 Diffstat:
| M | gfx/thebes/gfxPlatformFontList.cpp | | | 6 | ++---- |
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/gfx/thebes/gfxPlatformFontList.cpp b/gfx/thebes/gfxPlatformFontList.cpp @@ -664,10 +664,8 @@ bool gfxPlatformFontList::InitFontList() { InitializeCodepointsWithNoFonts(); - // Try to initialize the cross-process shared font list if enabled by prefs, - // but not if we're running in Safe Mode. - if (StaticPrefs::gfx_e10s_font_list_shared_AtStartup() && - !gfxPlatform::InSafeMode()) { + // Try to initialize the cross-process shared font list if enabled by prefs. + if (StaticPrefs::gfx_e10s_font_list_shared_AtStartup()) { for (const auto& entry : mFontEntries.Values()) { if (!entry) { continue;