Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderTextControl.cpp643 RefPtr<RenderStyle> placeholderStyle = getCachedPseudoStyle(INPUT_PLACEHOLDER); in paintPlaceholder() local
644 if (!placeholderStyle) in paintPlaceholder()
645 placeholderStyle = style(); in paintPlaceholder()
647 …paintInfo.context->setFillColor(placeholderStyle->visitedDependentColor(CSSPropertyColor), placeho… in paintPlaceholder()
650 …alse, 0, 0, TextRun::AllowTrailingExpansion, !placeholderStyle->isLeftToRightDirection(), placehol… in paintPlaceholder()
655 textPoint.setY(ty + textBlockInsetTop() + placeholderStyle->fontMetrics().ascent()); in paintPlaceholder()
656 if (placeholderStyle->isLeftToRightDirection()) in paintPlaceholder()
661 paintInfo.context->drawBidiText(placeholderStyle->font(), textRun, textPoint); in paintPlaceholder()