Home | History | Annotate | Download | only in rendering

Lines Matching defs:styleToUse

185     RenderStyle* styleToUse = textObj->style(m_firstLine);
186 const Font& f = styleToUse->font();
192 adjustCharactersAndLengthForHyphen(charactersWithHyphen, styleToUse, characters, len);
517 RenderStyle* styleToUse = renderer()->style(m_firstLine);
519 ty -= styleToUse->isHorizontalWritingMode() ? 0 : logicalHeight();
525 RenderCombineText* combinedText = styleToUse->hasTextCombine() && textRenderer()->isCombineText() && toRenderCombineText(textRenderer())->isCombined() ? toRenderCombineText(textRenderer()) : 0;
536 const Font& font = styleToUse->font();
548 if (styleToUse->highlight() != nullAtom && !context->paintingDisabled())
549 paintCustomHighlight(tx, ty, styleToUse->highlight());
553 paintCompositionBackground(context, boxOrigin, styleToUse, font,
557 paintDocumentMarkers(context, boxOrigin, styleToUse, font, true);
560 paintSelection(context, boxOrigin, styleToUse, font);
567 float textStrokeWidth = styleToUse->textStrokeWidth();
568 const ShadowData* textShadow = paintInfo.forceBlackText ? 0 : styleToUse->textShadow();
575 textFillColor = styleToUse->visitedDependentColor(CSSPropertyWebkitTextFillColor);
578 if (styleToUse->forceBackgroundsToWhite())
581 textStrokeColor = styleToUse->visitedDependentColor(CSSPropertyWebkitTextStrokeColor);
584 if (styleToUse->forceBackgroundsToWhite())
587 emphasisMarkColor = styleToUse->visitedDependentColor(CSSPropertyWebkitTextEmphasisColor);
590 if (styleToUse->forceBackgroundsToWhite())
651 adjustCharactersAndLengthForHyphen(charactersWithHyphen, styleToUse, characters, length);
653 TextRun textRun(characters, length, textRenderer()->allowTabs(), textPos(), m_expansion, expansionBehavior(), !isLeftToRightDirection(), m_dirOverride || styleToUse->visuallyOrdered());
668 bool hasTextEmphasis = getEmphasisMarkPosition(styleToUse, emphasisMarkPosition);
669 const AtomicString& emphasisMark = hasTextEmphasis ? styleToUse->textEmphasisMarkString() : nullAtom;
679 updateGraphicsContext(context, textFillColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
687 updateGraphicsContext(context, emphasisMarkColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
714 updateGraphicsContext(context, selectionFillColor, selectionStrokeColor, selectionStrokeWidth, styleToUse->colorSpace());
717 updateGraphicsContext(context, selectionEmphasisMarkColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
735 int textDecorations = styleToUse->textDecorationsInEffect();
737 updateGraphicsContext(context, textFillColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
742 styleToUse, font, false);
902 RenderStyle* styleToUse = renderer()->style(m_firstLine);
903 int baseline = styleToUse->fontMetrics().ascent();