Changeset 177984 in webkit


Ignore:
Timestamp:
Jan 6, 2015, 12:06:28 PM (11 years ago)
Author:
Antti Koivisto
Message:

REGRESSION (r177876): 35% regression in Parser/html5-full-render
https://bugs.webkit.org/show_bug.cgi?id=140123

Followup fix.

  • platform/graphics/SimpleFontData.cpp:

(WebCore::SimpleFontData::systemFallbackFontDataForCharacter):

The code failed to pass isForPlatformFont boolean.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r177983 r177984  
     12015-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
    1132015-01-06  Commit Queue  <commit-queue@webkit.org>
    214
  • trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp

    r177979 r177984  
    461461        }
    462462
    463         fallbackFontData = fontCache().systemFallbackForCharacters(description, this, false, codeUnits, codeUnitsLength).get();
     463        fallbackFontData = fontCache().systemFallbackForCharacters(description, this, isForPlatformFont, codeUnits, codeUnitsLength).get();
    464464        if (fallbackFontData)
    465465            fallbackFontData->m_isUsedInSystemFallbackCache = true;
Note: See TracChangeset for help on using the changeset viewer.