| Index: third_party/WebKit/Source/platform/fonts/linux/FontCacheLinux.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/linux/FontCacheLinux.cpp b/third_party/WebKit/Source/platform/fonts/linux/FontCacheLinux.cpp
|
| index 19e55527f3cf1195faedae6dd45015181eee925d..3ca9e050238b7516a61a636eeb77199fac8041e0 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/linux/FontCacheLinux.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/linux/FontCacheLinux.cpp
|
| @@ -147,8 +147,9 @@ PassRefPtr<SimpleFontData> FontCache::fallbackFontForCharacter(
|
| }
|
| if (fallbackFont.isItalic && description.style() == FontStyleNormal)
|
| description.setStyle(FontStyleItalic);
|
| - if (!fallbackFont.isItalic && (description.style() == FontStyleItalic ||
|
| - description.style() == FontStyleOblique)) {
|
| + if (!fallbackFont.isItalic &&
|
| + (description.style() == FontStyleItalic ||
|
| + description.style() == FontStyleOblique)) {
|
| shouldSetSyntheticItalic = true;
|
| description.setStyle(FontStyleNormal);
|
| }
|
|
|