| Index: third_party/WebKit/Source/core/editing/EditingStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/EditingStyle.cpp b/third_party/WebKit/Source/core/editing/EditingStyle.cpp
|
| index f3576a7edd9cb580e893437c732c834ed1527017..16b9bb7ae5ef669323f4d2600c2905ec68cf6a75 100644
|
| --- a/third_party/WebKit/Source/core/editing/EditingStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/EditingStyle.cpp
|
| @@ -1559,7 +1559,7 @@ void StyleChange::extractTextStyles(Document* document, MutableStylePropertySet*
|
|
|
| m_applyFontFace = style->getPropertyValue(CSSPropertyFontFamily);
|
| // Remove double quotes for Outlook 2007 compatibility. See https://bugs.webkit.org/show_bug.cgi?id=79448
|
| - m_applyFontFace.replaceWithLiteral('"', "");
|
| + m_applyFontFace.replace('"', "");
|
| style->removeProperty(CSSPropertyFontFamily);
|
|
|
| if (RefPtrWillBeRawPtr<CSSValue> fontSize = style->getPropertyCSSValue(CSSPropertyFontSize)) {
|
|
|