Index: Source/core/style/StyleRareInheritedData.cpp |
diff --git a/Source/core/style/StyleRareInheritedData.cpp b/Source/core/style/StyleRareInheritedData.cpp |
index 7eb9495902944c8bf6a53ae6a69f22a32c235fa8..de641cf99271bf788a7c5be809ae3dd07b659d78 100644 |
--- a/Source/core/style/StyleRareInheritedData.cpp |
+++ b/Source/core/style/StyleRareInheritedData.cpp |
@@ -90,6 +90,7 @@ StyleRareInheritedData::StyleRareInheritedData() |
, m_rubyPosition(ComputedStyle::initialRubyPosition()) |
, m_subtreeWillChangeContents(false) |
, m_selfOrAncestorHasDirAutoAttribute(false) |
+ , m_respectImageOrientation(false) |
, hyphenationLimitBefore(-1) |
, hyphenationLimitAfter(-1) |
, hyphenationLimitLines(-1) |
@@ -145,6 +146,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) |
@@ -208,6 +210,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 |