Bug 131967

Summary: [OS X] Glyph spacing for system fonts may be incorrect
Product: WebKit Reporter: Myles C. Maxfield <mmaxfield>
Component: New BugsAssignee: Myles C. Maxfield <mmaxfield>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, dino, jonlee, simon.fraser, thorton, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch
none
Patch none

Myles C. Maxfield
Reported 2014-04-21 19:39:09 PDT
[OS X] Glyph spacing for system fonts may be incorrect
Attachments
Patch (4.80 KB, patch)
2014-04-21 19:41 PDT, Myles C. Maxfield
no flags
Patch (4.96 KB, patch)
2014-04-22 12:37 PDT, Myles C. Maxfield
no flags
Patch (1.53 KB, patch)
2014-04-22 14:05 PDT, Myles C. Maxfield
no flags
Myles C. Maxfield
Comment 1 2014-04-21 19:41:04 PDT
WebKit Commit Bot
Comment 2 2014-04-21 19:42:24 PDT
Attachment 229852 [details] did not pass style-queue: ERROR: Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm:376: Boolean expressions that span multiple lines should have their operators on the left side of the line instead of the right side. [whitespace/operators] [4] Total errors found: 1 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
Myles C. Maxfield
Comment 3 2014-04-21 19:43:27 PDT
Myles C. Maxfield
Comment 4 2014-04-21 19:44:08 PDT
Style check is a false negative, though I don't think it's feasible to fix the checker scripts because there are preprocessor macros at play here.
Dean Jackson
Comment 5 2014-04-22 10:31:32 PDT
Comment on attachment 229852 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=229852&action=review > Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm:378 > + if ( > +#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 > + !CTFontDescriptorIsSystemUIFont(descriptor.get()) && > +#endif > + (horizontal || m_isBrokenIdeographFallback)) { I don't know the performance implications, but could you switch to have the ALWAYS test first? That will make the style bot happy.
Myles C. Maxfield
Comment 6 2014-04-22 12:37:37 PDT
Simon Fraser (smfr)
Comment 7 2014-04-22 12:40:01 PDT
Comment on attachment 229907 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=229907&action=review > Source/WebCore/ChangeLog:11 > + (WebCore::SimpleFontData::platformWidthForGlyph): Update to use CTFontGetAdvancesForGlyphs() for system fonts You don't explain the horizontal ? kCTFontHorizontalOrientation : kCTFontVerticalOrientation change. > Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm:384 > + if ((horizontal || m_isBrokenIdeographFallback) && !hasCustomTracking(m_platformData.ctFont())) { So much better!
Myles C. Maxfield
Comment 8 2014-04-22 13:39:30 PDT
Myles C. Maxfield
Comment 9 2014-04-22 14:05:31 PDT
Reopening to attach new patch.
Myles C. Maxfield
Comment 10 2014-04-22 14:05:35 PDT
Note You need to log in before you can comment on or make changes to this bug.