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

  /external/webkit/Source/WebCore/rendering/
RenderTextControlMultiLine.cpp 121 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create();
122 textBlockStyle->inheritFrom(startStyle);
123 adjustInnerTextStyle(startStyle, textBlockStyle.get());
124 textBlockStyle->setDisplay(BLOCK);
126 return textBlockStyle.release();
RenderTextControl.cpp 94 RefPtr<RenderStyle> textBlockStyle = createInnerTextStyle(style());
99 setInnerTextStyle(textBlockStyle);
130 void RenderTextControl::adjustInnerTextStyle(const RenderStyle* startStyle, RenderStyle* textBlockStyle) const
134 textBlockStyle->setDirection(style()->direction());
136 bool disabled = updateUserModifyProperty(node(), textBlockStyle);
138 textBlockStyle->setColor(disabledTextColor(textBlockStyle->visitedDependentColor(CSSPropertyColor), startStyle->visitedDependentColor(CSSPropertyBackgroundColor)));
RenderTextControlSingleLine.cpp 716 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create();
717 textBlockStyle->inheritFrom(startStyle);
718 adjustInnerTextStyle(startStyle, textBlockStyle.get());
720 textBlockStyle->setWhiteSpace(PRE);
721 textBlockStyle->setWordWrap(NormalWordWrap);
722 textBlockStyle->setOverflowX(OHIDDEN);
723 textBlockStyle->setOverflowY(OHIDDEN);
726 if (textBlockStyle->fontMetrics().lineSpacing() > lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes))
727 textBlockStyle->setLineHeight(Length(-100.0f, Percent));
734 textBlockStyle->setDisplay(display)
    [all...]

Completed in 127 milliseconds