Searched defs:lineClamp (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareNonInheritedData.h102 LineClampValue lineClamp; // An Apple extension. member in class:blink::StyleRareNonInheritedData
H A DRenderStyle.h932 const LineClampValue& lineClamp() const { return rareNonInheritedData->lineClamp; } function in class:blink::RenderStyle
1401 void setLineClamp(LineClampValue c) { SET_VAR(rareNonInheritedData, lineClamp, c); }
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp180 if (oldStyle && !oldStyle->lineClamp().isNone() && newStyle.lineClamp().isNone())
633 bool haveLineClamp = !style()->lineClamp().isNone();
892 LineClampValue lineClamp = style()->lineClamp(); local
893 int numVisibleLines = lineClamp.isPercentage() ? std::max(1, (maxLineCount + 1) * lineClamp.value() / 100) : lineClamp.value();

Completed in 118 milliseconds