Home
last modified time | relevance | path

Searched refs:marginBefore (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp242 …ticBlockPosition(isHorizontalWritingMode()) && oldStyle->marginBefore() != newStyle->marginBefore() in styleDidChange()
2738 …h = Length(parentBox()->contentLogicalHeight() - marginBefore() - marginAfter() - borderAndPadding… in computeLogicalHeight()
2779 …LayoutUnit marginsBordersPadding = margins + parentBox()->marginBefore() + parentBox()->marginAfte… in computeLogicalHeight()
2862 …rootMarginBorderPaddingHeight += cb->marginBefore() + cb->marginAfter() + cb->borderAndPaddingLogi… in computePercentageLogicalHeight()
3133 availableHeight -= marginBefore() + marginAfter() + borderAndPaddingLogicalHeight(); in availableLogicalHeightUsing()
3138 …BlockDirectionMargins(const RenderBlock* containingBlock, LayoutUnit& marginBefore, LayoutUnit& ma… in computeBlockDirectionMargins() argument
3143 marginBefore = 0; in computeBlockDirectionMargins()
3153marginBefore = minimumValueForLength(style()->marginBeforeUsing(containingBlockStyle), cw, renderV… in computeBlockDirectionMargins()
3159 LayoutUnit marginBefore; in computeAndSetBlockDirectionMargins() local
3161 computeBlockDirectionMargins(containingBlock, marginBefore, marginAfter); in computeAndSetBlockDirectionMargins()
[all …]
DRenderBoxModelObject.h149 virtual LayoutUnit marginBefore(const RenderStyle* otherStyle = 0) const = 0;
155 LayoutUnit marginLogicalHeight() const { return marginBefore() + marginAfter(); } in marginLogicalHeight()
DRenderBlockFlow.h305 return std::max<LayoutUnit>(block->marginBefore(), 0); in positiveMarginBeforeDefault()
309 return std::max<LayoutUnit>(-block->marginBefore(), 0); in negativeMarginBeforeDefault()
DRenderBox.h271 …virtual LayoutUnit marginBefore(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { retur…
304 virtual LayoutUnit collapsedMarginBefore() const { return marginBefore(); } in collapsedMarginBefore()
372 …void computeBlockDirectionMargins(const RenderBlock* containingBlock, LayoutUnit& marginBefore, La…
DRenderInline.h51 virtual LayoutUnit marginBefore(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
DRenderTable.cpp446 …oldTableLogicalTop += m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[… in layout()
712 …aptionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[… in subtractCaptionRect()
DRenderBlockFlow.cpp880 beforeMargin = child->marginBefore(); in marginValuesForChild()
893 afterMargin = child->marginBefore(); in marginValuesForChild()
963 if (!marginInfo.determinedMarginBeforeQuirk() && topQuirk && !marginBefore()) { in collapseMargins()
DRenderBlock.h304 …ginBeforeForChild(const RenderBoxModelObject* child) const { return child->marginBefore(style()); } in marginBeforeForChild()
DRootInlineBox.cpp822 …)->borderBefore() + box->boxModelObject()->paddingBefore() + box->boxModelObject()->marginBefore(); in ascentAndDescentForBox()
DRenderInline.cpp734 LayoutUnit RenderInline::marginBefore(const RenderStyle* otherStyle) const in marginBefore() function in WebCore::RenderInline
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShapeInfo.h137 return -m_renderer->marginBefore(); in logicalTopOffset()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.h385 bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); } in hasMarginBeforeQuirk()
680 Length marginBefore() const { return surround->margin.before(writingMode()); } in marginBefore() function