Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp |
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
index bb79aabdfbac5a2a06bd3d283e46ca4e57b53981..d7ad20d5c51cf5d60a03447077f872366518ca19 100644 |
--- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
@@ -48,6 +48,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData() |
, m_clipPath(RenderStyle::initialClipPath()) |
, m_visitedLinkBackgroundColor(RenderStyle::initialBackgroundColor()) |
, m_order(RenderStyle::initialOrder()) |
+ , m_objectPosition(RenderStyle::initialObjectPosition()) |
, m_flowThread(RenderStyle::initialFlowThread()) |
, m_regionThread(RenderStyle::initialRegionThread()) |
, m_regionFragment(RenderStyle::initialRegionFragment()) |
@@ -121,6 +122,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited |
, m_visitedLinkBorderTopColor(o.m_visitedLinkBorderTopColor) |
, m_visitedLinkBorderBottomColor(o.m_visitedLinkBorderBottomColor) |
, m_order(o.m_order) |
+ , m_objectPosition(o.m_objectPosition) |
, m_flowThread(o.m_flowThread) |
, m_regionThread(o.m_regionThread) |
, m_regionFragment(o.m_regionFragment) |
@@ -197,6 +199,7 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c |
&& m_visitedLinkBorderTopColor == o.m_visitedLinkBorderTopColor |
&& m_visitedLinkBorderBottomColor == o.m_visitedLinkBorderBottomColor |
&& m_order == o.m_order |
+ && m_objectPosition == o.m_objectPosition |
&& m_flowThread == o.m_flowThread |
&& m_regionThread == o.m_regionThread |
&& m_regionFragment == o.m_regionFragment |