Home
last modified time | relevance | path

Searched refs:logicalMaxHeight (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderNamedFlowFragment.cpp105logicalMaxHeight().isUndefined() ? RenderFlowThread::maxLogicalHeight() : toRenderBlock(parent())-… in maxPageLogicalHeight()
DRenderMultiColumnSet.cpp177 if (!multicolStyle->logicalMaxHeight().isUndefined()) { in prepareForLayout()
178 …LayoutUnit logicalMaxHeight = multicolBlock->computeContentLogicalHeight(multicolStyle->logicalMax… in prepareForLayout() local
179 if (m_maxColumnHeight > logicalMaxHeight) in prepareForLayout()
180 m_maxColumnHeight = logicalMaxHeight; in prepareForLayout()
DRenderRegion.cpp78 … style()->logicalMaxHeight().isUndefined() ? RenderFlowThread::maxLogicalHeight() : computeReplace… in maxPageLogicalHeight()
DRenderBox.cpp617 if (!styleToUse->logicalMaxHeight().isUndefined()) { in constrainLogicalHeightByMinMax()
618 …LayoutUnit maxH = computeLogicalHeightUsing(styleToUse->logicalMaxHeight(), intrinsicContentHeight… in constrainLogicalHeightByMinMax()
628 if (!styleToUse->logicalMaxHeight().isUndefined()) { in constrainContentBoxLogicalHeightByMinMax()
629 …LayoutUnit maxH = computeContentLogicalHeight(styleToUse->logicalMaxHeight(), intrinsicContentHeig… in constrainContentBoxLogicalHeightByMinMax()
3019 …calHeight = style()->logicalMaxHeight().isUndefined() ? logicalHeight : computeReplacedLogicalHeig… in computeReplacedLogicalHeightRespectingMinMaxHeight()
3749 if (!styleToUse->logicalMaxHeight().isUndefined()) { in computePositionedLogicalHeight()
3752 …computePositionedLogicalHeightUsing(styleToUse->logicalMaxHeight(), containerBlock, containerLogic… in computePositionedLogicalHeight()
4624 …|| (!style()->logicalMaxHeight().isIntrinsicOrAuto() && !style()->logicalMaxHeight().isUndefined()… in hasUnsplittableScrollingOverflow()
4895 || style()->logicalMaxHeight().isPercent() in hasRelativeLogicalHeight()
4898 || style()->logicalMaxHeight().isViewportPercentage(); in hasRelativeLogicalHeight()
DRenderView.cpp323 || child->style()->logicalMaxHeight().isPercent() in layout()
326 || child->style()->logicalMaxHeight().isViewportPercentage()) in layout()
DRenderTable.cpp504 Length logicalMaxHeightLength = style()->logicalMaxHeight(); in layout()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGRoot.cpp168 if (style()->logicalHeight().isSpecified() || style()->logicalMaxHeight().isSpecified()) in computeReplacedLogicalHeight()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.h472 Length logicalMaxHeight() const { return isHorizontalWritingMode() ? maxHeight() : maxWidth(); } in logicalMaxHeight() function