| Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| index 57c810a017477e440462ba1bf3e15398238d1c43..0a203e3ebe019845b359d7c1af01591f5769f92e 100644
|
| --- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| +++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| @@ -71,7 +71,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| , marginBeforeCollapse(MCOLLAPSE)
|
| , marginAfterCollapse(MCOLLAPSE)
|
| , m_appearance(RenderStyle::initialAppearance())
|
| - , m_borderFit(RenderStyle::initialBorderFit())
|
| , m_textCombine(RenderStyle::initialTextCombine())
|
| , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle())
|
| , m_wrapFlow(RenderStyle::initialWrapFlow())
|
| @@ -155,7 +154,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
|
| , marginBeforeCollapse(o.marginBeforeCollapse)
|
| , marginAfterCollapse(o.marginAfterCollapse)
|
| , m_appearance(o.m_appearance)
|
| - , m_borderFit(o.m_borderFit)
|
| , m_textCombine(o.m_textCombine)
|
| , m_textDecorationStyle(o.m_textDecorationStyle)
|
| , m_wrapFlow(o.m_wrapFlow)
|
| @@ -246,7 +244,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
|
| && marginBeforeCollapse == o.marginBeforeCollapse
|
| && marginAfterCollapse == o.marginAfterCollapse
|
| && m_appearance == o.m_appearance
|
| - && m_borderFit == o.m_borderFit
|
| && m_textCombine == o.m_textCombine
|
| && m_textDecorationStyle == o.m_textDecorationStyle
|
| && m_wrapFlow == o.m_wrapFlow
|
|
|