Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(763)

Unified Diff: third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp

Issue 2394273006: Add CSS support for text-decoration-skip (Closed)
Patch Set: Histograms typo fixed, DCHECK Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) &&
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareInheritedData.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698