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

  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.cpp 118 RefPtr<RenderStyle> textBlockStyle;
121 textBlockStyle = RenderStyle::clone(pseudoStyle);
123 if (!textBlockStyle) {
124 textBlockStyle = RenderStyle::create();
125 textBlockStyle->inheritFrom(startStyle);
128 adjustInnerTextStyle(startStyle, textBlockStyle.get());
129 textBlockStyle->setDisplay(BLOCK);
131 return textBlockStyle.release();
RenderTextControlSingleLine.cpp 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)
    [all...]
RenderTextControl.h 65 void adjustInnerTextStyle(const RenderStyle* startStyle, RenderStyle* textBlockStyle) const;
RenderTextControl.cpp 91 RefPtr<RenderStyle> textBlockStyle = createInnerTextStyle(style());
96 setInnerTextStyle(textBlockStyle);
129 void RenderTextControl::adjustInnerTextStyle(const RenderStyle* startStyle, RenderStyle* textBlockStyle) const
133 textBlockStyle->setDirection(style()->direction());
135 bool disabled = updateUserModifyProperty(node(), textBlockStyle);
137 textBlockStyle->setColor(disabledTextColor(textBlockStyle->color(), startStyle->backgroundColor()));

Completed in 31 milliseconds