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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.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/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index d50ed7c27f1f87e3d255c505262aeb4d0d9a7f0f..2fc9f7e27dc9240c7390ee3a11a628a2d71227d6 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1106,6 +1106,8 @@ void ComputedStyle::updatePropertySpecificDifferences(
other.m_rareInheritedData->visitedLinkTextEmphasisColor() ||
m_rareInheritedData->textEmphasisFill !=
other.m_rareInheritedData->textEmphasisFill ||
+ m_rareInheritedData->m_textDecorationSkip !=
+ other.m_rareInheritedData->m_textDecorationSkip ||
m_rareInheritedData->appliedTextDecorations !=
other.m_rareInheritedData->appliedTextDecorations)) {
diff.setTextDecorationOrColorChanged();
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | third_party/WebKit/Source/core/style/ComputedStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698