HomeSort by relevance Sort by last modified time
    Searched defs:outlineColor (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlinePainter.cpp 54 Color outlineColor = m_renderInline.resolveColor(styleToUse, CSSPropertyOutlineColor);
55 bool useTransparencyLayer = outlineColor.hasAlpha();
59 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255);
60 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue());
64 paintOutlineForLine(graphicsContext, paintOffset, rects.at(i - 1), rects.at(i), rects.at(i + 1), outlineColor);
71 const LayoutRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor)
97 outlineColor, outlineStyle
    [all...]
ObjectPainter.cpp 60 Color outlineColor = m_renderObject.resolveColor(styleToUse, CSSPropertyOutlineColor);
63 bool useTransparencyLayer = outlineColor.hasAlpha();
70 graphicsContext->setFillColor(outlineColor);
74 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255);
75 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue());
87 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, leftInner, bottomOuter, BSLeft, outlineColor, outlineStyle, outlineWidth, outlineWidth);
88 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, rightOuter, topInner, BSTop, outlineColor, outlineStyle, outlineWidth, outlineWidth)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h     [all...]

Completed in 214 milliseconds