| Index: third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| index 45241b99e7773d21d9a8d15274ec4b99172632fb..0c272d7016e815f950bc14716460eca8196e8540 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| @@ -93,6 +93,7 @@ StyleRareInheritedData::StyleRareInheritedData()
|
| m_textIndentType(ComputedStyle::initialTextIndentLine()),
|
| m_imageRendering(ComputedStyle::initialImageRendering()),
|
| m_textUnderlinePosition(ComputedStyle::initialTextUnderlinePosition()),
|
| + m_textDecorationSkip(ComputedStyle::initialTextDecorationSkip()),
|
| m_rubyPosition(ComputedStyle::initialRubyPosition()),
|
| m_subtreeWillChangeContents(false),
|
| m_selfOrAncestorHasDirAutoAttribute(false),
|
| @@ -151,6 +152,7 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
|
| m_textIndentType(o.m_textIndentType),
|
| m_imageRendering(o.m_imageRendering),
|
| m_textUnderlinePosition(o.m_textUnderlinePosition),
|
| + m_textDecorationSkip(o.m_textDecorationSkip),
|
| m_rubyPosition(o.m_rubyPosition),
|
| m_subtreeWillChangeContents(o.m_subtreeWillChangeContents),
|
| m_selfOrAncestorHasDirAutoAttribute(
|
| @@ -221,6 +223,7 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const {
|
| quotesDataEquivalent(o) && m_tabSize == o.m_tabSize &&
|
| m_imageRendering == o.m_imageRendering &&
|
| m_textUnderlinePosition == o.m_textUnderlinePosition &&
|
| + m_textDecorationSkip == o.m_textDecorationSkip &&
|
| m_rubyPosition == o.m_rubyPosition &&
|
| dataEquivalent(listStyleImage.get(), o.listStyleImage.get()) &&
|
| dataEquivalent(appliedTextDecorations, o.appliedTextDecorations) &&
|
|
|