Chromium Code Reviews| 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 35f4e07513054312749d1fd443faaa7400703ccf..276a373618851ca7e5b2e4a72ca4306ca9adba9b 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 single quotes for Outlook 2007 compatibility. See https://bugs.webkit.org/show_bug.cgi?id=79448 |
|
Timothy Loh
2016/03/14 23:25:11
single -> double?
rwlbuis
2016/03/15 18:34:15
Done.
|
| - m_applyFontFace.replaceWithLiteral('\'', ""); |
| + m_applyFontFace.replaceWithLiteral('\"', ""); |
|
Timothy Loh
2016/03/14 23:25:11
no need for backslash
rwlbuis
2016/03/15 18:34:15
Done.
|
| style->removeProperty(CSSPropertyFontFamily); |
| if (RefPtrWillBeRawPtr<CSSValue> fontSize = style->getPropertyCSSValue(CSSPropertyFontSize)) { |