| Index: Source/core/rendering/style/StyleRareInheritedData.cpp
|
| diff --git a/Source/core/rendering/style/StyleRareInheritedData.cpp b/Source/core/rendering/style/StyleRareInheritedData.cpp
|
| index 0f31382f83f9c054cb3055c209bb5548d943d492..343239cd5b19ade201a444816452324c03b17fb3 100644
|
| --- a/Source/core/rendering/style/StyleRareInheritedData.cpp
|
| +++ b/Source/core/rendering/style/StyleRareInheritedData.cpp
|
| @@ -90,8 +90,8 @@ StyleRareInheritedData::StyleRareInheritedData()
|
| #endif
|
| #if ENABLE(CSS3_TEXT)
|
| , m_textAlignLast(RenderStyle::initialTextAlignLast())
|
| - , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition())
|
| #endif // CSS3_TEXT
|
| + , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition())
|
| , m_rubyPosition(RenderStyle::initialRubyPosition())
|
| , hyphenationLimitBefore(-1)
|
| , hyphenationLimitAfter(-1)
|
| @@ -148,8 +148,8 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
|
| #endif
|
| #if ENABLE(CSS3_TEXT)
|
| , m_textAlignLast(o.m_textAlignLast)
|
| - , m_textUnderlinePosition(o.m_textUnderlinePosition)
|
| #endif // CSS3_TEXT
|
| + , m_textUnderlinePosition(o.m_textUnderlinePosition)
|
| , m_rubyPosition(o.m_rubyPosition)
|
| , hyphenationString(o.hyphenationString)
|
| , hyphenationLimitBefore(o.hyphenationLimitBefore)
|
| @@ -229,8 +229,8 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
|
| && m_imageRendering == o.m_imageRendering
|
| #if ENABLE(CSS3_TEXT)
|
| && m_textAlignLast == o.m_textAlignLast
|
| - && m_textUnderlinePosition == o.m_textUnderlinePosition
|
| #endif // CSS3_TEXT
|
| + && m_textUnderlinePosition == o.m_textUnderlinePosition
|
| && m_rubyPosition == o.m_rubyPosition
|
| && m_lineSnap == o.m_lineSnap
|
| && m_variables == o.m_variables
|
|
|