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

Unified Diff: Source/core/rendering/RenderObject.cpp

Issue 280503003: Fix incorrect style recalculation of text-decoration properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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: Source/core/rendering/RenderObject.cpp
diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp
index 5c5b178fc3fc813735e0bdd8586dd01e4a20f601..abd5a713c066bcf813603550231d2168ebe6268a 100644
--- a/Source/core/rendering/RenderObject.cpp
+++ b/Source/core/rendering/RenderObject.cpp
@@ -3063,23 +3063,6 @@ bool RenderObject::hasBlendMode() const
return RuntimeEnabledFeatures::cssCompositingEnabled() && style() && style()->hasBlendMode();
}
-static Color decorationColor(const RenderObject* object, RenderStyle* style)
-{
- // Check for text decoration color first.
- StyleColor result = style->visitedDependentDecorationColor();
- if (!result.isCurrentColor())
- return result.color();
-
- if (style->textStrokeWidth() > 0) {
- // Prefer stroke color if possible but not if it's fully transparent.
- Color textStrokeColor = object->resolveColor(style, CSSPropertyWebkitTextStrokeColor);
- if (textStrokeColor.alpha())
- return textStrokeColor;
- }
-
- return object->resolveColor(style, CSSPropertyWebkitTextFillColor);
-}
-
void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoration& underline, AppliedTextDecoration& overline, AppliedTextDecoration& linethrough, bool quirksMode, bool firstlineStyle)
{
RenderObject* curr = this;
@@ -3091,7 +3074,7 @@ void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoratio
styleToUse = curr->style(firstlineStyle);
currDecs = styleToUse->textDecoration();
currDecs &= decorations;
- resultColor = decorationColor(this, styleToUse);
+ resultColor = styleToUse->visitedDependentDecorationColor();
resultStyle = styleToUse->textDecorationStyle();
// Parameter 'decorations' is cast as an int to enable the bitwise operations below.
if (currDecs) {
@@ -3121,7 +3104,7 @@ void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoratio
// If we bailed out, use the element we bailed out at (typically a <font> or <a> element).
if (decorations && curr) {
styleToUse = curr->style(firstlineStyle);
- resultColor = decorationColor(this, styleToUse);
+ resultColor = styleToUse->visitedDependentDecorationColor();
if (decorations & TextDecorationUnderline) {
underline.color = resultColor;
underline.style = resultStyle;

Powered by Google App Engine
This is Rietveld 408576698