| Index: third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontCache.cpp b/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| index 29b184198ae71ce804bb47a3fdb79ec82ced6062..0aa6afb2bf15e94f75ba92e17f8eca133f552a97 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| @@ -104,7 +104,7 @@ FontPlatformData* FontCache::getFontPlatformData(const FontDescription& fontDesc
|
| // to avoid trigering its dtor hash-changed asserts.
|
| auto addResult = gFontPlatformDataCache->add(key, nullptr);
|
| if (addResult.isNewEntry)
|
| - addResult.storedValue->value = createFontPlatformData(fontDescription, creationParams, fontDescription.effectiveFontSize());
|
| + addResult.storedValue->value = createFontPlatformData(fontDescription, creationParams);
|
|
|
| result = addResult.storedValue->value.get();
|
| foundResult = result || !addResult.isNewEntry;
|
|
|