Index: Source/core/editing/ApplyStyleCommand.cpp |
diff --git a/Source/core/editing/ApplyStyleCommand.cpp b/Source/core/editing/ApplyStyleCommand.cpp |
index d773b8a65df4093f87f81c55a301d08369d01a52..b25c4e967cd60a8ba5e44d34e21ef6a2c135fb03 100644 |
--- a/Source/core/editing/ApplyStyleCommand.cpp |
+++ b/Source/core/editing/ApplyStyleCommand.cpp |
@@ -1548,7 +1548,7 @@ float ApplyStyleCommand::computedFontSize(Node* node) |
if (!value) |
return 0; |
- CSSPrimitiveValue& primitiveValue = toCSSPrimitiveValue(*value); |
+ CSSPrimitiveValue primitiveValue = toCSSPrimitiveValue(*value); |
ASSERT(primitiveValue.primitiveType() == CSSPrimitiveValue::CSS_PX); |
return primitiveValue.getFloatValue(); |
} |