| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index 308fd1a45dd9154198195118f6e225e6dd825a83..97040a915543921453596480e6e8decb55d78722 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -1568,6 +1568,13 @@ void ComputedStyle::clearAppliedTextDecorations()
|
| m_rareInheritedData.access()->appliedTextDecorations = nullptr;
|
| }
|
|
|
| +void ComputedStyle::restoreParentTextDecorations(const ComputedStyle& parentStyle)
|
| +{
|
| + m_inheritedData.m_textUnderline = parentStyle.m_inheritedData.m_textUnderline;
|
| + if (m_rareInheritedData->appliedTextDecorations != parentStyle.m_rareInheritedData->appliedTextDecorations)
|
| + m_rareInheritedData.access()->appliedTextDecorations = parentStyle.m_rareInheritedData->appliedTextDecorations;
|
| +}
|
| +
|
| void ComputedStyle::clearMultiCol()
|
| {
|
| m_rareNonInheritedData.access()->m_multiCol = nullptr;
|
|
|