| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 81b316d8cb5f1ec0b206e6b560085ee5370cd711..1f6cb63b1541817fc979833809aa949a66333af1 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -610,7 +610,7 @@ bool CSSComputedStyleDeclaration::cssPropertyMatches(CSSPropertyID propertyID, c
|
| const ComputedStyle* style = m_node->ensureComputedStyle(m_pseudoElementSpecifier);
|
| if (style && style->fontDescription().keywordSize()) {
|
| CSSValueID sizeValue = cssIdentifierForFontSizeKeyword(style->fontDescription().keywordSize());
|
| - const CSSPrimitiveValue primitiveValue = toCSSPrimitiveValue(propertyValue);
|
| + const CSSPrimitiveValue& primitiveValue = toCSSPrimitiveValue(propertyValue);
|
| if (primitiveValue.isValueID() && primitiveValue.getValueID() == sizeValue)
|
| return true;
|
| }
|
|
|