Changeset 193930 in webkit


Ignore:
Timestamp:
Dec 10, 2015, 3:39:52 PM (10 years ago)
Author:
mmaxfield@apple.com
Message:

Build fix

Unreviewed.

Source/WebCore:

  • platform/graphics/cocoa/FontCocoa.mm:

(WebCore::Font::variantCapsSupportsCharacterForSynthesis):

LayoutTests:

  • platform/mac/TestExpectations:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r193925 r193930  
     12015-12-10  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Build fix
     4
     5        Unreviewed.
     6
     7        * platform/mac/TestExpectations:
     8
    192015-12-10  Ryan Haddad  <ryanhaddad@apple.com>
    210
  • trunk/LayoutTests/platform/mac/TestExpectations

    r193894 r193930  
    12931293[ Yosemite ElCapitan ] css3/font-variant-small-caps-synthesis-coverage.html [ ImageOnlyFailure ]
    12941294[ Yosemite ElCapitan ] css3/font-variant-petite-caps-synthesis-coverage.html [ ImageOnlyFailure ]
     1295
     1296# Temporarily disable font feature synthesis tests.
     1297[ Yosemite ElCapitan ] css3/font-variant-small-caps-synthesis.html [ ImageOnlyFailure ]
     1298[ Yosemite ElCapitan ] css3/font-variant-petite-caps-synthesis.html [ ImageOnlyFailure ]
  • trunk/Source/WebCore/ChangeLog

    r193929 r193930  
     12015-12-10  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Build fix
     4
     5        Unreviewed.
     6
     7        * platform/graphics/cocoa/FontCocoa.mm:
     8        (WebCore::Font::variantCapsSupportsCharacterForSynthesis):
     9
    1102015-12-10  Zalan Bujtas  <zalan@apple.com>
    211
  • trunk/Source/WebCore/platform/graphics/cocoa/FontCocoa.mm

    r193894 r193930  
    285285bool Font::variantCapsSupportsCharacterForSynthesis(FontVariantCaps fontVariantCaps, UChar32 character) const
    286286{
    287 #if (PLATFORM(IOS) && TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 90300) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100 && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101104)
     287#if (PLATFORM(IOS) && TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 100000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200)
    288288    Glyph glyph = glyphForCharacter(character);
    289289    if (!glyph)
     
    327327}
    328328
    329 #if (PLATFORM(IOS) && TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 90300) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100 && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101104)
     329#if (PLATFORM(IOS) && TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 100000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200)
    330330static RetainPtr<CFDictionaryRef> smallCapsOpenTypeDictionary(CFStringRef key, int rawValue)
    331331{
Note: See TracChangeset for help on using the changeset viewer.