HomeSort by relevance Sort by last modified time
    Searched refs:textBlockStyle (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 82 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create();
83 textBlockStyle->inheritFrom(startStyle);
84 adjustInnerTextStyle(textBlockStyle.get());
85 textBlockStyle->setDisplay(BLOCK);
87 return textBlockStyle.release();
RenderTextControlSingleLine.cpp 359 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create();
360 textBlockStyle->inheritFrom(startStyle);
361 adjustInnerTextStyle(textBlockStyle.get());
363 textBlockStyle->setWhiteSpace(PRE);
364 textBlockStyle->setOverflowWrap(NormalOverflowWrap);
365 textBlockStyle->setOverflowX(OHIDDEN);
366 textBlockStyle->setOverflowY(OHIDDEN);
367 textBlockStyle->setTextOverflow(textShouldBeTruncated() ? TextOverflowEllipsis : TextOverflowClip);
370 textBlockStyle->setLogicalHeight(Length(m_desiredInnerTextLogicalHeight, Fixed));
372 if (textBlockStyle->fontMetrics().lineSpacing() > lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes)
    [all...]
RenderTextControl.cpp 78 void RenderTextControl::adjustInnerTextStyle(RenderStyle* textBlockStyle) const
82 textBlockStyle->setDirection(style()->direction());
83 textBlockStyle->setUnicodeBidi(style()->unicodeBidi());
85 updateUserModifyProperty(textFormControlElement(), textBlockStyle);
RenderTextControl.h 46 void adjustInnerTextStyle(RenderStyle* textBlockStyle) const;

Completed in 52 milliseconds