Searched refs:maxLogicalHeight (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMultiColumnSet.cpp41 , m_maxColumnHeight(RenderFlowThread::maxLogicalHeight())
42 , m_minSpaceShortage(RenderFlowThread::maxLogicalHeight())
188 ASSERT(m_minSpaceShortage != RenderFlowThread::maxLogicalHeight()); // If this happens, we probably have a bug.
189 if (m_minSpaceShortage == RenderFlowThread::maxLogicalHeight())
233 m_minSpaceShortage = RenderFlowThread::maxLogicalHeight();
300 LayoutUnit maxColumnHeight = availableHeight ? availableHeight : RenderFlowThread::maxLogicalHeight();
H A DRenderFlowThread.h110 static LayoutUnit maxLogicalHeight() { return LayoutUnit::max() / 2; } function in class:blink::RenderFlowThread
H A DRenderFlowThread.cpp228 LayoutUnit columnSetLogicalHeight = std::min<LayoutUnit>(RenderFlowThread::maxLogicalHeight() - logicalHeight, columnSet->logicalHeightOfAllFlowThreadContent());
H A DRenderBox.cpp2560 LayoutUnit maxLogicalHeight = logicalHeight; local
2562 maxLogicalHeight = computeReplacedLogicalHeightUsing(style()->logicalMaxHeight());
2563 return std::max(minLogicalHeight, std::min(logicalHeight, maxLogicalHeight));

Completed in 188 milliseconds