Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlockFlow.cpp92 LayoutUnit m_negativeMargin; member in WebCore::MarginInfo
102 m_negativeMargin = 0; in clearMargin()
108 void setNegativeMargin(LayoutUnit n) { ASSERT(!m_discardMargin); m_negativeMargin = n; } in setNegativeMargin()
118 if (n > m_negativeMargin) in setNegativeMarginIfLarger()
119 m_negativeMargin = n; in setNegativeMarginIfLarger()
122 …youtUnit p, LayoutUnit n) { ASSERT(!m_discardMargin); m_positiveMargin = p; m_negativeMargin = n; } in setMargin()
138 LayoutUnit negativeMargin() const { return m_negativeMargin; } in negativeMargin()
140 LayoutUnit margin() const { return m_positiveMargin - m_negativeMargin; } in margin()
963m_negativeMargin = (m_canCollapseMarginBeforeWithChildren && !blockFlow->mustDiscardMarginBefore()… in MarginInfo()