Searched refs:colorProperty (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.h776 inline Color resolveColor(const RenderStyle* styleToUse, int colorProperty) const
778 return styleToUse->visitedDependentColor(colorProperty);
781 inline Color resolveColor(int colorProperty) const
783 return style()->visitedDependentColor(colorProperty);
786 inline Color resolveColor(int colorProperty, Color fallback) const argument
788 Color color = resolveColor(colorProperty);
1072 Color selectionColor(int colorProperty) const;
H A DRenderObject.cpp1745 Color RenderObject::selectionColor(int colorProperty) const
1754 Color selectionColor = resolveColor(pseudoStyle.get(), colorProperty);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1342 Color RenderStyle::colorIncludingFallback(int colorProperty, bool visitedLink) const argument
1346 switch (colorProperty) {
1412 Color RenderStyle::visitedDependentColor(int colorProperty) const
1414 Color unvisitedColor = colorIncludingFallback(colorProperty, false);
1418 Color visitedColor = colorIncludingFallback(colorProperty, true);
1421 if (colorProperty == CSSPropertyTextDecorationColor)
1429 if (colorProperty == CSSPropertyBackgroundColor && visitedColor == Color::transparent)
H A DRenderStyle.h1508 Color visitedDependentColor(int colorProperty) const;
1770 Color colorIncludingFallback(int colorProperty, bool visitedLink) const;

Completed in 273 milliseconds