Changeset 193930 in webkit
- Timestamp:
- Dec 10, 2015, 3:39:52 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r193925 r193930 1 2015-12-10 Myles C. Maxfield <mmaxfield@apple.com> 2 3 Build fix 4 5 Unreviewed. 6 7 * platform/mac/TestExpectations: 8 1 9 2015-12-10 Ryan Haddad <ryanhaddad@apple.com> 2 10 -
trunk/LayoutTests/platform/mac/TestExpectations
r193894 r193930 1293 1293 [ Yosemite ElCapitan ] css3/font-variant-small-caps-synthesis-coverage.html [ ImageOnlyFailure ] 1294 1294 [ 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 1 2015-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 1 10 2015-12-10 Zalan Bujtas <zalan@apple.com> 2 11 -
trunk/Source/WebCore/platform/graphics/cocoa/FontCocoa.mm
r193894 r193930 285 285 bool Font::variantCapsSupportsCharacterForSynthesis(FontVariantCaps fontVariantCaps, UChar32 character) const 286 286 { 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) 288 288 Glyph glyph = glyphForCharacter(character); 289 289 if (!glyph) … … 327 327 } 328 328 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) 330 330 static RetainPtr<CFDictionaryRef> smallCapsOpenTypeDictionary(CFStringRef key, int rawValue) 331 331 {
Note:
See TracChangeset
for help on using the changeset viewer.