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

  /external/webkit/WebCore/rendering/
RenderBlock.h 219 virtual int maxTopMargin(bool positive) const { return positive ? maxTopPosMargin() : maxTopNegMargin(); }
RenderBox.h 146 // the margin of the element. Blocks override the maxTopMargin and maxBottomMargin
149 int collapsedMarginTop() const { return maxTopMargin(true) - maxTopMargin(false); }
151 virtual int maxTopMargin(bool positive) const { return positive ? std::max(0, marginTop()) : -std::min(0, marginTop()); }

Completed in 360 milliseconds