Changeset 177984 in webkit
- Timestamp:
- Jan 6, 2015, 12:06:28 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r177983 r177984 1 2015-01-06 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r177876): 35% regression in Parser/html5-full-render 4 https://bugs.webkit.org/show_bug.cgi?id=140123 5 6 Followup fix. 7 8 * platform/graphics/SimpleFontData.cpp: 9 (WebCore::SimpleFontData::systemFallbackFontDataForCharacter): 10 11 The code failed to pass isForPlatformFont boolean. 12 1 13 2015-01-06 Commit Queue <commit-queue@webkit.org> 2 14 -
trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp
r177979 r177984 461 461 } 462 462 463 fallbackFontData = fontCache().systemFallbackForCharacters(description, this, false, codeUnits, codeUnitsLength).get();463 fallbackFontData = fontCache().systemFallbackForCharacters(description, this, isForPlatformFont, codeUnits, codeUnitsLength).get(); 464 464 if (fallbackFontData) 465 465 fallbackFontData->m_isUsedInSystemFallbackCache = true;
Note:
See TracChangeset
for help on using the changeset viewer.