Index: Source/core/css/StyleSheetContents.cpp |
diff --git a/Source/core/css/StyleSheetContents.cpp b/Source/core/css/StyleSheetContents.cpp |
index d8b5c73088a7df09300ccdf8fc352b15776cb2cb..58389d7043a457b9f8fa52dccf2030c14ab4b958 100644 |
--- a/Source/core/css/StyleSheetContents.cpp |
+++ b/Source/core/css/StyleSheetContents.cpp |
@@ -62,6 +62,7 @@ StyleSheetContents::StyleSheetContents(StyleRuleImport* ownerRule, const String& |
, m_usesRemUnits(false) |
, m_isMutable(false) |
, m_isInMemoryCache(false) |
+ , m_hasFontFaceRule(false) |
, m_parserContext(context) |
{ |
} |
@@ -80,6 +81,7 @@ StyleSheetContents::StyleSheetContents(const StyleSheetContents& o) |
, m_usesRemUnits(o.m_usesRemUnits) |
, m_isMutable(false) |
, m_isInMemoryCache(false) |
+ , m_hasFontFaceRule(o.m_hasFontFaceRule) |
, m_parserContext(o.m_parserContext) |
{ |
ASSERT(o.isCacheable()); |