Index: Source/core/rendering/RenderObject.cpp |
diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp |
index 6965c961cf6a2bcf60de3f41034698b83e60e672..45a67001ef5784db8a7af7624a949e80d589d323 100644 |
--- a/Source/core/rendering/RenderObject.cpp |
+++ b/Source/core/rendering/RenderObject.cpp |
@@ -2801,12 +2801,10 @@ bool RenderObject::hasBlendMode() const |
static Color decorationColor(RenderStyle* style) |
{ |
Color result; |
-#if ENABLE(CSS3_TEXT) |
// Check for text decoration color first. |
result = style->visitedDependentColor(CSSPropertyWebkitTextDecorationColor); |
if (result.isValid()) |
return result; |
-#endif // CSS3_TEXT |
if (style->textStrokeWidth() > 0) { |
// Prefer stroke color if possible but not if it's fully transparent. |
result = style->visitedDependentColor(CSSPropertyWebkitTextStrokeColor); |