wrapPaddingBorderHeight method

double wrapPaddingBorderHeight(
  1. double contentBoxHeight
)

Implementation

double wrapPaddingBorderHeight(double contentBoxHeight) {
  return contentBoxHeight
    + paddingTop.computedValue
    + paddingBottom.computedValue
    + border.top
    + border.bottom;
}