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

  /external/webkit/WebCore/rendering/
RenderBlock.h 220 virtual int maxBottomMargin(bool positive) const { return positive ? maxBottomPosMargin() : maxBottomNegMargin(); }
RenderBox.h 146 // the margin of the element. Blocks override the maxTopMargin and maxBottomMargin
150 int collapsedMarginBottom() const { return maxBottomMargin(true) - maxBottomMargin(false); }
152 virtual int maxBottomMargin(bool positive) const { return positive ? std::max(0, marginBottom()) : -std::min(0, marginBottom()); }

Completed in 19 milliseconds