| Index: third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| index eeae6a4e31979036d0565df7e94b73ed49c4f32c..fcffe7074990422e9f9fe5e7abe3867484fd8851 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| @@ -445,7 +445,7 @@ void ApplyStyleCommand::applyRelativeFontStyleChange(EditingStyle* style, Editin
|
| currentFontSize = computedFontSize(node);
|
| }
|
| if (currentFontSize != desiredFontSize) {
|
| - inlineStyle->setProperty(CSSPropertyFontSize, CSSPrimitiveValue::create(desiredFontSize, CSSPrimitiveValue::UnitType::Pixels), false);
|
| + inlineStyle->setProperty(CSSPropertyFontSize, *CSSPrimitiveValue::create(desiredFontSize, CSSPrimitiveValue::UnitType::Pixels), false);
|
| setNodeAttribute(element, styleAttr, AtomicString(inlineStyle->asText()));
|
| }
|
| if (inlineStyle->isEmpty()) {
|
|
|