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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ColumnInfo.h 62 LayoutUnit columnHeight() const { return m_columnHeight; }
RenderBlockFlow.cpp 213 LayoutUnit columnHeight = computedValues.m_extent - borderAndPaddingLogicalHeight() - scrollbarLogicalHeight();
214 pageLogicalHeightChanged = columnHeight != flowThread->columnHeightAvailable();
215 flowThread->setColumnHeightAvailable(std::max<LayoutUnit>(columnHeight, 0));
225 LayoutUnit columnHeight = contentLogicalHeight();
226 if (columnHeight > 0) {
227 pageLogicalHeight = columnHeight;
232 if (colInfo->columnHeight() != pageLogicalHeight && everHadLayout()) {
262 LayoutUnit columnHeight = pageLogicalHeight;
271 columnHeight = std::max(colInfo->minimumColumnHeight(), distanceBetweenBreaks);
275 columnHeight = std::max<LayoutUnit>(colInfo->minimumColumnHeight(), ceilf(layoutOverflowLogicalBottom.toFloat() (…)
    [all...]

Completed in 47 milliseconds