Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.h812 inline Color resolveColor(const RenderStyle* styleToUse, int colorProperty) const in resolveColor() argument
814 return styleToUse->visitedDependentColor(colorProperty); in resolveColor()
817 inline Color resolveColor(int colorProperty) const in resolveColor() argument
819 return style()->visitedDependentColor(colorProperty); in resolveColor()
1149 Color selectionColor(int colorProperty) const;
DRenderObject.cpp1547 Color RenderObject::selectionColor(int colorProperty) const in selectionColor()
1552 return resolveColor(colorProperty); in selectionColor()
1555 return resolveColor(pseudoStyle.get(), colorProperty); in selectionColor()
1557 return resolveColor(colorProperty); in selectionColor()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.cpp1403 Color RenderStyle::colorIncludingFallback(int colorProperty, bool visitedLink) const in colorIncludingFallback() argument
1407 switch (colorProperty) { in colorIncludingFallback()
1472 Color RenderStyle::visitedDependentColor(int colorProperty) const in visitedDependentColor()
1474 Color unvisitedColor = colorIncludingFallback(colorProperty, false); in visitedDependentColor()
1478 Color visitedColor = colorIncludingFallback(colorProperty, true); in visitedDependentColor()
1485 if (colorProperty == CSSPropertyBackgroundColor && visitedColor == Color::transparent) in visitedDependentColor()
DRenderStyle.h1533 Color visitedDependentColor(int colorProperty) const;
1805 Color colorIncludingFallback(int colorProperty, bool visitedLink) const;