| Index: Source/core/css/StyleSheetContents.cpp
|
| diff --git a/Source/core/css/StyleSheetContents.cpp b/Source/core/css/StyleSheetContents.cpp
|
| index 15645ca03bc56ba980ac53b040ba1eb1881a005a..290128ca66b73ca0181020fde7c6bef3ffd2ee84 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)
|
|
|