Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderTextControlMultiLine.cpp121 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create(); in createInnerTextStyle() local
122 textBlockStyle->inheritFrom(startStyle); in createInnerTextStyle()
123 adjustInnerTextStyle(startStyle, textBlockStyle.get()); in createInnerTextStyle()
124 textBlockStyle->setDisplay(BLOCK); in createInnerTextStyle()
126 return textBlockStyle.release(); in createInnerTextStyle()
DRenderTextControlSingleLine.cpp716 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create(); in createInnerTextStyle() local
717 textBlockStyle->inheritFrom(startStyle); in createInnerTextStyle()
718 adjustInnerTextStyle(startStyle, textBlockStyle.get()); in createInnerTextStyle()
720 textBlockStyle->setWhiteSpace(PRE); in createInnerTextStyle()
721 textBlockStyle->setWordWrap(NormalWordWrap); in createInnerTextStyle()
722 textBlockStyle->setOverflowX(OHIDDEN); in createInnerTextStyle()
723 textBlockStyle->setOverflowY(OHIDDEN); in createInnerTextStyle()
726 …if (textBlockStyle->fontMetrics().lineSpacing() > lineHeight(true, HorizontalLine, PositionOfInter… in createInnerTextStyle()
727 textBlockStyle->setLineHeight(Length(-100.0f, Percent)); in createInnerTextStyle()
734 textBlockStyle->setDisplay(display); in createInnerTextStyle()
[all …]
DRenderTextControl.cpp94 RefPtr<RenderStyle> textBlockStyle = createInnerTextStyle(style()); in styleDidChange() local
99 setInnerTextStyle(textBlockStyle); in styleDidChange()
130 …TextControl::adjustInnerTextStyle(const RenderStyle* startStyle, RenderStyle* textBlockStyle) const in adjustInnerTextStyle()
134 textBlockStyle->setDirection(style()->direction()); in adjustInnerTextStyle()
136 bool disabled = updateUserModifyProperty(node(), textBlockStyle); in adjustInnerTextStyle()
138textBlockStyle->setColor(disabledTextColor(textBlockStyle->visitedDependentColor(CSSPropertyColor)… in adjustInnerTextStyle()
DRenderTextControl.h60 void adjustInnerTextStyle(const RenderStyle* startStyle, RenderStyle* textBlockStyle) const;