| Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| index 7b4500ecd001f51c53205e810a9338673de4272e..a9f24c783702fe4f50fa915ddea9065b9c3da337 100644
|
| --- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| +++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| @@ -44,7 +44,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| , m_pageSize()
|
| , m_shapeOutside(RenderStyle::initialShapeOutside())
|
| , m_shapeMargin(RenderStyle::initialShapeMargin())
|
| - , m_shapePadding(RenderStyle::initialShapePadding())
|
| , m_shapeImageThreshold(RenderStyle::initialShapeImageThreshold())
|
| , m_clipPath(RenderStyle::initialClipPath())
|
| , m_textDecorationColor(StyleColor::currentColor())
|
| @@ -119,7 +118,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
|
| , m_pageSize(o.m_pageSize)
|
| , m_shapeOutside(o.m_shapeOutside)
|
| , m_shapeMargin(o.m_shapeMargin)
|
| - , m_shapePadding(o.m_shapePadding)
|
| , m_shapeImageThreshold(o.m_shapeImageThreshold)
|
| , m_clipPath(o.m_clipPath)
|
| , m_textDecorationColor(o.m_textDecorationColor)
|
| @@ -200,7 +198,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
|
| && m_pageSize == o.m_pageSize
|
| && m_shapeOutside == o.m_shapeOutside
|
| && m_shapeMargin == o.m_shapeMargin
|
| - && m_shapePadding == o.m_shapePadding
|
| && m_shapeImageThreshold == o.m_shapeImageThreshold
|
| && m_clipPath == o.m_clipPath
|
| && m_textDecorationColor == o.m_textDecorationColor
|
|
|