| Index: Source/core/rendering/style/StyleRareInheritedData.cpp
|
| diff --git a/Source/core/rendering/style/StyleRareInheritedData.cpp b/Source/core/rendering/style/StyleRareInheritedData.cpp
|
| index 3b8715321784e4449e9c9414cc18b2667412c507..4cfe2a70ad468547de84606bfd772d17af8b255c 100644
|
| --- a/Source/core/rendering/style/StyleRareInheritedData.cpp
|
| +++ b/Source/core/rendering/style/StyleRareInheritedData.cpp
|
| @@ -60,7 +60,6 @@ StyleRareInheritedData::StyleRareInheritedData()
|
| , m_effectiveZoom(RenderStyle::initialZoom())
|
| , widows(RenderStyle::initialWidows())
|
| , orphans(RenderStyle::initialOrphans())
|
| - , m_hasAutoWidows(true)
|
| , m_hasAutoOrphans(true)
|
| , m_textStrokeColorIsCurrentColor(true)
|
| , m_textFillColorIsCurrentColor(true)
|
| @@ -114,7 +113,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
|
| , m_effectiveZoom(o.m_effectiveZoom)
|
| , widows(o.widows)
|
| , orphans(o.orphans)
|
| - , m_hasAutoWidows(o.m_hasAutoWidows)
|
| , m_hasAutoOrphans(o.m_hasAutoOrphans)
|
| , m_textStrokeColorIsCurrentColor(o.m_textStrokeColorIsCurrentColor)
|
| , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor)
|
| @@ -176,7 +174,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
|
| && m_effectiveZoom == o.m_effectiveZoom
|
| && widows == o.widows
|
| && orphans == o.orphans
|
| - && m_hasAutoWidows == o.m_hasAutoWidows
|
| && m_hasAutoOrphans == o.m_hasAutoOrphans
|
| && m_textStrokeColorIsCurrentColor == o.m_textStrokeColorIsCurrentColor
|
| && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor
|
|
|