| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 7bcb54e40baee2d522ca991f251a078ee098948b..1248be1d12c9632c4f9d684f928e7b7451232b8a 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1885,6 +1885,18 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| SET_VAR(m_rareInheritedData, m_textUnderlinePosition, v);
|
| }
|
|
|
| + // text-decoration-skip
|
| + static TextDecorationSkip initialTextDecorationSkip() {
|
| + return TextDecorationSkipObjects;
|
| + }
|
| + TextDecorationSkip getTextDecorationSkip() const {
|
| + return static_cast<TextDecorationSkip>(
|
| + m_rareInheritedData->m_textDecorationSkip);
|
| + }
|
| + void setTextDecorationSkip(TextDecorationSkip v) {
|
| + SET_VAR(m_rareInheritedData, m_textDecorationSkip, v);
|
| + }
|
| +
|
| // text-overflow
|
| static TextOverflow initialTextOverflow() { return TextOverflowClip; }
|
| TextOverflow getTextOverflow() const {
|
|
|