RESOLVED FIXED 221064
Remove some uses of FontSelector from within CSSFontFace
https://bugs.webkit.org/show_bug.cgi?id=221064
Summary Remove some uses of FontSelector from within CSSFontFace
Myles C. Maxfield
Reported 2021-01-27 15:17:55 PST
Remove some uses of FontSelector from within CSSFontFace
Attachments
Patch (5.17 KB, patch)
2021-01-27 15:19 PST, Myles C. Maxfield
darin: review+
Patch for committing (5.95 KB, patch)
2021-01-27 16:01 PST, Myles C. Maxfield
ews-feeder: commit-queue-
Myles C. Maxfield
Comment 1 2021-01-27 15:19:09 PST
Darin Adler
Comment 2 2021-01-27 15:40:24 PST
Comment on attachment 418588 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=418588&action=review > Source/WebCore/css/CSSFontFace.cpp:98 > + , m_shouldIgnoreFontLoadCompletions(m_fontSelector && m_fontSelector->document() ? m_fontSelector->document()->settings().shouldIgnoreFontLoadCompletions() : false) I suggest using && here more instead of using ?: with false. I suggest using fontSelector here instead of m_fontSelector since you plan to remove the latter. > Source/WebCore/css/CSSFontFace.cpp:100 > + , m_allowUserInstalledFonts(m_fontSelector && m_fontSelector->document() && !m_fontSelector->document()->settings().shouldAllowUserInstalledFonts() ? AllowUserInstalledFonts::No : AllowUserInstalledFonts::Yes) I suggest using fontSelector here instead of m_fontSelector since you plan to remove the latter. I think we should try to find a way to get to settings that works even when the font selector is nullptr. I think we should also restructure things so the Settings& is an argument to the constructor. We can have one constructor call another, and the one that takes Settings& can be private. > Source/WebCore/css/CSSFontFace.h:156 > + bool shouldIgnoreFontLoadCompletions() const { return m_shouldIgnoreFontLoadCompletions; }; Unneeded semicolon here after the closing brace.
Myles C. Maxfield
Comment 3 2021-01-27 16:01:21 PST
Created attachment 418595 [details] Patch for committing
EWS
Comment 4 2021-01-27 18:26:23 PST
ChangeLog entry in Source/WebCore/ChangeLog contains OOPS!.
Myles C. Maxfield
Comment 5 2021-01-28 19:49:11 PST
Radar WebKit Bug Importer
Comment 6 2021-01-28 19:50:15 PST
Note You need to log in before you can comment on or make changes to this bug.