RESOLVED FIXED130168
RenderTextControl::hasValidAvgCharWidth doesn't detect System Font
https://bugs.webkit.org/show_bug.cgi?id=130168
Summary RenderTextControl::hasValidAvgCharWidth doesn't detect System Font
Myles C. Maxfield
Reported 2014-03-12 17:21:32 PDT
RenderTextControl::hasValidAvgCharWidth doesn't detect System Font
Attachments
Patch (1.74 KB, patch)
2014-03-12 17:23 PDT, Myles C. Maxfield
no flags
Patch (13.85 KB, patch)
2014-03-12 19:55 PDT, Myles C. Maxfield
dino: review+
Myles C. Maxfield
Comment 1 2014-03-12 17:23:01 PDT
Myles C. Maxfield
Comment 2 2014-03-12 19:46:32 PDT
Myles C. Maxfield
Comment 3 2014-03-12 19:55:40 PDT
Dean Jackson
Comment 4 2014-03-13 16:29:44 PDT
Comment on attachment 226570 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=226570&action=review > Source/WebCore/ChangeLog:24 > + * platform/graphics/Font.cpp: > + (WebCore::Font::hasValidAvgCharWidth): > + (WebCore::Font::fastAvgCharWidth): > + * platform/graphics/Font.h: > + * rendering/RenderTextControl.cpp: > + (WebCore::RenderTextControl::getAvgCharWidth): > + (WebCore::RenderTextControl::computeIntrinsicLogicalWidths): > + * rendering/RenderTextControl.h: > + * rendering/RenderTextControlMultiLine.cpp: > + (WebCore::RenderTextControlMultiLine::getAvgCharWidth): > + * rendering/RenderTextControlMultiLine.h: > + * rendering/RenderTextControlSingleLine.cpp: > + (WebCore::RenderTextControlSingleLine::getAvgCharWidth): > + (WebCore::RenderTextControlSingleLine::preferredContentLogicalWidth): > + * rendering/RenderTextControlSingleLine.h: You should provide some per-file descriptions! > Source/WebCore/platform/graphics/Font.cpp:501 > + width = roundf(primaryFont()->avgCharWidth()); // FIXME: primaryFont() might not correspond to firstFamily() . at end of comment > Source/WebCore/platform/graphics/Font.h:157 > + bool fastAvgCharWidth(float &width) const; // returns true on success I wish the name was more clear. This looks like a getter, but is actually something more tricky. Maybe computeFastAvgCharWidth()? (even though there is no computation) The other places where we do things like this seem to all be in the Audio code (mostly from a single author). Also, let's take this opportunity to expand Avg to Average
Myles C. Maxfield
Comment 5 2014-03-15 17:18:55 PDT
Note You need to log in before you can comment on or make changes to this bug.