Changeset 214585 in webkit


Ignore:
Timestamp:
Mar 29, 2017 5:37:36 PM (7 years ago)
Author:
mmaxfield@apple.com
Message:

Try to normalize variation ranges
https://bugs.webkit.org/show_bug.cgi?id=170119

Unreviewed.

Addressing post-review comment.

  • platform/graphics/cocoa/FontCacheCoreText.cpp:

(WebCore::isGXVariableFont):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r214572 r214585  
     12017-03-29  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Try to normalize variation ranges
     4        https://bugs.webkit.org/show_bug.cgi?id=170119
     5
     6        Unreviewed.
     7
     8        Addressing post-review comment.
     9
     10        * platform/graphics/cocoa/FontCacheCoreText.cpp:
     11        (WebCore::isGXVariableFont):
     12
    1132017-03-29  Myles C. Maxfield  <mmaxfield@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/cocoa/FontCacheCoreText.cpp

    r214572 r214585  
    442442        // "CTFontTableTag tag = (CTFontTableTag)(uintptr_t)CFArrayGetValueAtIndex(tags, index);"
    443443        CTFontTableTag tableTag = static_cast<CTFontTableTag>(reinterpret_cast<uintptr_t>(CFArrayGetValueAtIndex(tables.get(), i)));
    444         if (tableTag == 'stat')
     444        if (tableTag == 'STAT')
    445445            return false;
    446446    }
Note: See TracChangeset for help on using the changeset viewer.