| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 77004b93b2f15078c11c8e2cd607a4fdae8ec794..377534c85eec6b5add513b91c5ab9b1c91a21a57 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -445,11 +445,11 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSComputedStyleDeclaration::getFontSizeCSSValu
|
| FixedPitchFontType CSSComputedStyleDeclaration::fixedPitchFontType() const
|
| {
|
| if (!m_node)
|
| - return NonFixedPitchFont;
|
| + return VariablePitchFont;
|
|
|
| const LayoutStyle* style = m_node->computedStyle(m_pseudoElementSpecifier);
|
| if (!style)
|
| - return NonFixedPitchFont;
|
| + return VariablePitchFont;
|
|
|
| return style->fontDescription().fixedPitchFontType();
|
| }
|
|
|