OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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);
86
textBlockStyle
->setUnique();
88
return
textBlockStyle
.release();
RenderTextControlSingleLine.cpp
358
RefPtr<RenderStyle>
textBlockStyle
= RenderStyle::create();
359
textBlockStyle
->inheritFrom(startStyle);
360
adjustInnerTextStyle(
textBlockStyle
.get());
362
textBlockStyle
->setWhiteSpace(PRE);
363
textBlockStyle
->setOverflowWrap(NormalOverflowWrap);
364
textBlockStyle
->setOverflowX(OHIDDEN);
365
textBlockStyle
->setOverflowY(OHIDDEN);
366
textBlockStyle
->setTextOverflow(textShouldBeTruncated() ? TextOverflowEllipsis : TextOverflowClip);
369
textBlockStyle
->setLogicalHeight(Length(m_desiredInnerTextLogicalHeight, Fixed));
371
if (
textBlockStyle
->fontMetrics().lineSpacing() > lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes)
[
all
...]
RenderTextControl.cpp
89
void RenderTextControl::adjustInnerTextStyle(RenderStyle*
textBlockStyle
) const
93
textBlockStyle
->setDirection(style()->direction());
94
textBlockStyle
->setUnicodeBidi(style()->unicodeBidi());
96
updateUserModifyProperty(textFormControlElement(),
textBlockStyle
);
RenderTextControl.h
46
void adjustInnerTextStyle(RenderStyle*
textBlockStyle
) const;
Completed in 3524 milliseconds