| Index: Source/core/style/StyleRareInheritedData.cpp
|
| diff --git a/Source/core/style/StyleRareInheritedData.cpp b/Source/core/style/StyleRareInheritedData.cpp
|
| index 9dcd2b6be58f51e02fe6e5f2402781b3bf472212..14ad485fcf130d80600187bed39176d49dda653c 100644
|
| --- a/Source/core/style/StyleRareInheritedData.cpp
|
| +++ b/Source/core/style/StyleRareInheritedData.cpp
|
| @@ -89,6 +89,7 @@ StyleRareInheritedData::StyleRareInheritedData()
|
| , m_rubyPosition(ComputedStyle::initialRubyPosition())
|
| , m_subtreeWillChangeContents(false)
|
| , m_selfOrAncestorHasDirAutoAttribute(false)
|
| + , m_respectImageOrientation(false)
|
| , hyphenationLimitBefore(-1)
|
| , hyphenationLimitAfter(-1)
|
| , hyphenationLimitLines(-1)
|
| @@ -143,6 +144,7 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
|
| , m_rubyPosition(o.m_rubyPosition)
|
| , m_subtreeWillChangeContents(o.m_subtreeWillChangeContents)
|
| , m_selfOrAncestorHasDirAutoAttribute(o.m_selfOrAncestorHasDirAutoAttribute)
|
| + , m_respectImageOrientation(o.m_respectImageOrientation)
|
| , hyphenationString(o.hyphenationString)
|
| , hyphenationLimitBefore(o.hyphenationLimitBefore)
|
| , hyphenationLimitAfter(o.hyphenationLimitAfter)
|
| @@ -205,6 +207,7 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
|
| && m_lineBoxContain == o.m_lineBoxContain
|
| && m_subtreeWillChangeContents == o.m_subtreeWillChangeContents
|
| && m_selfOrAncestorHasDirAutoAttribute == o.m_selfOrAncestorHasDirAutoAttribute
|
| + && m_respectImageOrientation == o.m_respectImageOrientation
|
| && hyphenationString == o.hyphenationString
|
| && locale == o.locale
|
| && textEmphasisCustomMark == o.textEmphasisCustomMark
|
|
|