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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 3045 matching lines...) Expand 10 before | Expand all | Expand 10 after
3056 } 3056 }
3057 3057
3058 return getUncachedPseudoStyle(PseudoStyleRequest(SELECTION)); 3058 return getUncachedPseudoStyle(PseudoStyleRequest(SELECTION));
3059 } 3059 }
3060 3060
3061 bool RenderObject::hasBlendMode() const 3061 bool RenderObject::hasBlendMode() const
3062 { 3062 {
3063 return RuntimeEnabledFeatures::cssCompositingEnabled() && style() && style() ->hasBlendMode(); 3063 return RuntimeEnabledFeatures::cssCompositingEnabled() && style() && style() ->hasBlendMode();
3064 } 3064 }
3065 3065
3066 static Color decorationColor(const RenderObject* object, RenderStyle* style)
3067 {
3068 // Check for text decoration color first.
3069 StyleColor result = style->visitedDependentDecorationColor();
3070 if (!result.isCurrentColor())
3071 return result.color();
3072
3073 if (style->textStrokeWidth() > 0) {
3074 // Prefer stroke color if possible but not if it's fully transparent.
3075 Color textStrokeColor = object->resolveColor(style, CSSPropertyWebkitTex tStrokeColor);
3076 if (textStrokeColor.alpha())
3077 return textStrokeColor;
3078 }
3079
3080 return object->resolveColor(style, CSSPropertyWebkitTextFillColor);
3081 }
3082
3083 void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoratio n& underline, AppliedTextDecoration& overline, AppliedTextDecoration& linethroug h, bool quirksMode, bool firstlineStyle) 3066 void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoratio n& underline, AppliedTextDecoration& overline, AppliedTextDecoration& linethroug h, bool quirksMode, bool firstlineStyle)
3084 { 3067 {
3085 RenderObject* curr = this; 3068 RenderObject* curr = this;
3086 RenderStyle* styleToUse = 0; 3069 RenderStyle* styleToUse = 0;
3087 unsigned currDecs = TextDecorationNone; 3070 unsigned currDecs = TextDecorationNone;
3088 Color resultColor; 3071 Color resultColor;
3089 TextDecorationStyle resultStyle; 3072 TextDecorationStyle resultStyle;
3090 do { 3073 do {
3091 styleToUse = curr->style(firstlineStyle); 3074 styleToUse = curr->style(firstlineStyle);
3092 currDecs = styleToUse->textDecoration(); 3075 currDecs = styleToUse->textDecoration();
3093 currDecs &= decorations; 3076 currDecs &= decorations;
3094 resultColor = decorationColor(this, styleToUse); 3077 resultColor = styleToUse->visitedDependentDecorationColor();
3095 resultStyle = styleToUse->textDecorationStyle(); 3078 resultStyle = styleToUse->textDecorationStyle();
3096 // Parameter 'decorations' is cast as an int to enable the bitwise opera tions below. 3079 // Parameter 'decorations' is cast as an int to enable the bitwise opera tions below.
3097 if (currDecs) { 3080 if (currDecs) {
3098 if (currDecs & TextDecorationUnderline) { 3081 if (currDecs & TextDecorationUnderline) {
3099 decorations &= ~TextDecorationUnderline; 3082 decorations &= ~TextDecorationUnderline;
3100 underline.color = resultColor; 3083 underline.color = resultColor;
3101 underline.style = resultStyle; 3084 underline.style = resultStyle;
3102 } 3085 }
3103 if (currDecs & TextDecorationOverline) { 3086 if (currDecs & TextDecorationOverline) {
3104 decorations &= ~TextDecorationOverline; 3087 decorations &= ~TextDecorationOverline;
3105 overline.color = resultColor; 3088 overline.color = resultColor;
3106 overline.style = resultStyle; 3089 overline.style = resultStyle;
3107 } 3090 }
3108 if (currDecs & TextDecorationLineThrough) { 3091 if (currDecs & TextDecorationLineThrough) {
3109 decorations &= ~TextDecorationLineThrough; 3092 decorations &= ~TextDecorationLineThrough;
3110 linethrough.color = resultColor; 3093 linethrough.color = resultColor;
3111 linethrough.style = resultStyle; 3094 linethrough.style = resultStyle;
3112 } 3095 }
3113 } 3096 }
3114 if (curr->isRubyText()) 3097 if (curr->isRubyText())
3115 return; 3098 return;
3116 curr = curr->parent(); 3099 curr = curr->parent();
3117 if (curr && curr->isAnonymousBlock() && toRenderBlock(curr)->continuatio n()) 3100 if (curr && curr->isAnonymousBlock() && toRenderBlock(curr)->continuatio n())
3118 curr = toRenderBlock(curr)->continuation(); 3101 curr = toRenderBlock(curr)->continuation();
3119 } while (curr && decorations && (!quirksMode || !curr->node() || (!isHTMLAnc horElement(*curr->node()) && !isHTMLFontElement(*curr->node())))); 3102 } while (curr && decorations && (!quirksMode || !curr->node() || (!isHTMLAnc horElement(*curr->node()) && !isHTMLFontElement(*curr->node()))));
3120 3103
3121 // If we bailed out, use the element we bailed out at (typically a <font> or <a> element). 3104 // If we bailed out, use the element we bailed out at (typically a <font> or <a> element).
3122 if (decorations && curr) { 3105 if (decorations && curr) {
3123 styleToUse = curr->style(firstlineStyle); 3106 styleToUse = curr->style(firstlineStyle);
3124 resultColor = decorationColor(this, styleToUse); 3107 resultColor = styleToUse->visitedDependentDecorationColor();
3125 if (decorations & TextDecorationUnderline) { 3108 if (decorations & TextDecorationUnderline) {
3126 underline.color = resultColor; 3109 underline.color = resultColor;
3127 underline.style = resultStyle; 3110 underline.style = resultStyle;
3128 } 3111 }
3129 if (decorations & TextDecorationOverline) { 3112 if (decorations & TextDecorationOverline) {
3130 overline.color = resultColor; 3113 overline.color = resultColor;
3131 overline.style = resultStyle; 3114 overline.style = resultStyle;
3132 } 3115 }
3133 if (decorations & TextDecorationLineThrough) { 3116 if (decorations & TextDecorationLineThrough) {
3134 linethrough.color = resultColor; 3117 linethrough.color = resultColor;
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
3464 { 3447 {
3465 if (object1) { 3448 if (object1) {
3466 const WebCore::RenderObject* root = object1; 3449 const WebCore::RenderObject* root = object1;
3467 while (root->parent()) 3450 while (root->parent())
3468 root = root->parent(); 3451 root = root->parent();
3469 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); 3452 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
3470 } 3453 }
3471 } 3454 }
3472 3455
3473 #endif 3456 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698