Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp |
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
index b48bb00fb9199a15bead70a5be5f03355af3487f..99c867aad2cb6ebda8630258a59d472a7b726944 100644 |
--- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
@@ -90,6 +90,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData() |
, m_scrollBehavior(RenderStyle::initialScrollBehavior()) |
, m_requiresAcceleratedCompositingForExternalReasons(false) |
, m_hasInlineTransform(false) |
+ , m_resize(RenderStyle::initialResize()) |
{ |
m_maskBoxImage.setMaskDefaults(); |
} |
@@ -169,6 +170,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited |
, m_scrollBehavior(o.m_scrollBehavior) |
, m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAcceleratedCompositingForExternalReasons) |
, m_hasInlineTransform(o.m_hasInlineTransform) |
+ , m_resize(o.m_resize) |
{ |
} |
@@ -251,7 +253,8 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c |
&& m_justifySelfOverflowAlignment == o.m_justifySelfOverflowAlignment |
&& m_scrollBehavior == o.m_scrollBehavior |
&& m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcceleratedCompositingForExternalReasons |
- && m_hasInlineTransform == o.m_hasInlineTransform; |
+ && m_hasInlineTransform == o.m_hasInlineTransform |
+ && m_resize == o.m_resize; |
} |
bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInheritedData& o) const |