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

  /external/webkit/Source/WebCore/rendering/style/
StyleRareInheritedData.h 65 ShadowData* textShadow; // Our text shadow information for shadowed text drawing.
RenderStyle.h 654 const ShadowData* textShadow() const { return rareInheritedData->textShadow; }
655 void getTextShadowExtent(int& top, int& right, int& bottom, int& left) const { getShadowExtent(textShadow(), top, right, bottom, left); }
656 void getTextShadowHorizontalExtent(int& left, int& right) const { getShadowHorizontalExtent(textShadow(), left, right); }
657 void getTextShadowVerticalExtent(int& top, int& bottom) const { getShadowVerticalExtent(textShadow(), top, bottom); }
658 void getTextShadowInlineDirectionExtent(int& logicalLeft, int& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, logicalRight); }
659 void getTextShadowBlockDirectionExtent(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, logicalBottom); }
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 568 const ShadowData* textShadow = paintInfo.forceBlackText ? 0 : styleToUse->textShadow();
601 const ShadowData* selectionShadow = textShadow;
619 const ShadowData* shadow = paintInfo.forceBlackText ? 0 : pseudoStyle->textShadow();
682 paintTextWithShadows(context, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
684 paintTextWithShadows(context, font, textRun, nullAtom, 0, ePos, sPos, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
697 paintTextWithShadows(context, combinedText ? combinedText->originalFont() : font, emphasisMarkTextRun, emphasisMark, emphasisMarkOffset, 0, length, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
699 paintTextWithShadows(context, combinedText ? combinedText->originalFont() : font, emphasisMarkTextRun, emphasisMark, emphasisMarkOffset, ePos, sPos, length, emphasisMarkTextOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
738 paintDecoration(context, boxOrigin, textDecorations, textShadow);
    [all...]

Completed in 77 milliseconds