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

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

Issue 2394273006: Add CSS support for text-decoration-skip (Closed)
Patch Set: Basic test for parsing, readback and inheritance added 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 12e6b65913f6a082e81a0f28a4257456900584ed..93cf07919c6203fe7d724c1a5725137dea53dd83 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();

Powered by Google App Engine
This is Rietveld 408576698