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 80 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create();
81 textBlockStyle->inheritFrom(startStyle);
82 adjustInnerEditorStyle(textBlockStyle.get());
83 textBlockStyle->setDisplay(BLOCK);
84 textBlockStyle->setUnique();
86 return textBlockStyle.release();
RenderTextControlSingleLine.cpp 337 RefPtr<RenderStyle> textBlockStyle = RenderStyle::create();
338 textBlockStyle->inheritFrom(startStyle);
339 adjustInnerEditorStyle(textBlockStyle.get());
341 textBlockStyle->setWhiteSpace(PRE);
342 textBlockStyle->setOverflowWrap(NormalOverflowWrap);
343 textBlockStyle->setOverflowX(OHIDDEN);
344 textBlockStyle->setOverflowY(OHIDDEN);
345 textBlockStyle->setTextOverflow(textShouldBeTruncated() ? TextOverflowEllipsis : TextOverflowClip);
348 textBlockStyle->setLogicalHeight(Length(m_desiredInnerEditorLogicalHeight, Fixed));
350 if (textBlockStyle->fontMetrics().lineSpacing() > lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes)
    [all...]
RenderTextControl.cpp 88 void RenderTextControl::adjustInnerEditorStyle(RenderStyle* textBlockStyle) const
92 textBlockStyle->setDirection(style()->direction());
93 textBlockStyle->setUnicodeBidi(style()->unicodeBidi());
95 updateUserModifyProperty(textFormControlElement(), textBlockStyle);
RenderTextControl.h 47 void adjustInnerEditorStyle(RenderStyle* textBlockStyle) const;

Completed in 574 milliseconds