Home | History | Annotate | Download | only in rendering

Lines Matching defs:textBlockStyle

493     RefPtr<RenderStyle> textBlockStyle;
496 textBlockStyle = RenderStyle::clone(pseudoStyle);
498 if (!textBlockStyle) {
499 textBlockStyle = RenderStyle::create();
500 textBlockStyle->inheritFrom(startStyle);
503 adjustInnerTextStyle(startStyle, textBlockStyle.get());
505 textBlockStyle->setWhiteSpace(PRE);
506 textBlockStyle->setWordWrap(NormalWordWrap);
507 textBlockStyle->setOverflowX(OHIDDEN);
508 textBlockStyle->setOverflowY(OHIDDEN);
511 if (textBlockStyle->font().lineSpacing() > lineHeight(true, true))
512 textBlockStyle->setLineHeight(Length(-100.0f, Percent));
514 textBlockStyle->setDisplay(m_innerBlock ? INLINE_BLOCK : BLOCK);
517 textBlockStyle->setPaddingLeft(Length(1, Fixed));
518 textBlockStyle->setPaddingRight(Length(1, Fixed));
525 textBlockStyle->setTextSecurity(TSNONE);
527 return textBlockStyle.release();