| 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 539f625086cf713c4f4f142280fbae3ea95d69a6..10da9d445850691fd872d476701ec2b53b0d96ce 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| @@ -429,7 +429,7 @@ void ApplyStyleCommand::applyRelativeFontStyleChange(EditingStyle* style, Editin
|
| MutableStylePropertySet* inlineStyle = copyStyleOrCreateEmpty(element->inlineStyle());
|
| float currentFontSize = computedFontSize(node);
|
| float desiredFontSize = max(MinimumFontSize, startingFontSizes.get(node) + style->fontSizeDelta());
|
| - CSSValue* value = inlineStyle->getPropertyCSSValue(CSSPropertyFontSize);
|
| + const CSSValue* value = inlineStyle->getPropertyCSSValue(CSSPropertyFontSize);
|
| if (value) {
|
| element->removeInlineStyleProperty(CSSPropertyFontSize);
|
| currentFontSize = computedFontSize(node);
|
|
|