| Index: Source/core/css/StyleSheetContents.cpp
|
| diff --git a/Source/core/css/StyleSheetContents.cpp b/Source/core/css/StyleSheetContents.cpp
|
| index 5a6e6f281cec86fd9b88108e690fbf1a1c6cf501..36d756c2e18c3c40bbb0d4b174a6601fb536441f 100644
|
| --- a/Source/core/css/StyleSheetContents.cpp
|
| +++ b/Source/core/css/StyleSheetContents.cpp
|
| @@ -63,6 +63,7 @@ StyleSheetContents::StyleSheetContents(StyleRuleImport* ownerRule, const String&
|
| , m_hasSyntacticallyValidCSSHeader(true)
|
| , m_didLoadErrorOccur(false)
|
| , m_usesRemUnits(false)
|
| + , m_usesVariables(false)
|
| , m_isMutable(false)
|
| , m_isInMemoryCache(false)
|
| , m_hasFontFaceRule(false)
|
| @@ -81,6 +82,7 @@ StyleSheetContents::StyleSheetContents(const StyleSheetContents& o)
|
| , m_hasSyntacticallyValidCSSHeader(o.m_hasSyntacticallyValidCSSHeader)
|
| , m_didLoadErrorOccur(false)
|
| , m_usesRemUnits(o.m_usesRemUnits)
|
| + , m_usesVariables(o.m_usesVariables)
|
| , m_isMutable(false)
|
| , m_isInMemoryCache(false)
|
| , m_hasFontFaceRule(o.m_hasFontFaceRule)
|
|
|