Index: Source/core/style/StyleRareNonInheritedData.cpp |
diff --git a/Source/core/style/StyleRareNonInheritedData.cpp b/Source/core/style/StyleRareNonInheritedData.cpp |
index 460563c08ac9ea35480462c6c48aa04ccb3a08e5..c7df50ea21cb1e7c905f5b37daf5147ee1e8ce3c 100644 |
--- a/Source/core/style/StyleRareNonInheritedData.cpp |
+++ b/Source/core/style/StyleRareNonInheritedData.cpp |
@@ -122,6 +122,8 @@ StyleRareNonInheritedData::StyleRareNonInheritedData() |
, m_hasInlineTransform(false) |
, m_resize(ComputedStyle::initialResize()) |
, m_hasCompositorProxy(false) |
+ , m_hasAuthorBackground(false) |
+ , m_hasAuthorBorder(false) |
{ |
m_maskBoxImage.setMaskDefaults(); |
} |
@@ -198,6 +200,8 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited |
, m_hasInlineTransform(o.m_hasInlineTransform) |
, m_resize(o.m_resize) |
, m_hasCompositorProxy(o.m_hasCompositorProxy) |
+ , m_hasAuthorBackground(o.m_hasAuthorBackground) |
+ , m_hasAuthorBorder(o.m_hasAuthorBorder) |
{ |
} |
@@ -277,7 +281,9 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c |
&& m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcceleratedCompositingForExternalReasons |
&& m_hasInlineTransform == o.m_hasInlineTransform |
&& m_resize == o.m_resize |
- && m_hasCompositorProxy == o.m_hasCompositorProxy; |
+ && m_hasCompositorProxy == o.m_hasCompositorProxy |
+ && m_hasAuthorBackground == o.m_hasAuthorBackground |
+ && m_hasAuthorBorder == o.m_hasAuthorBorder; |
} |
bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInheritedData& o) const |