public Rectangle getPaddingEdge(int left, int top, CssContext cssCtx) {
RectPropertySet margin = getMargin(cssCtx);
RectPropertySet border = getBorder(cssCtx);
Rectangle result = new Rectangle(left + (int) margin.left() + (int) border.left(),
top + (int) margin.top() + (int) border.top(),
getWidth() - (int) margin.width() - (int) border.width(),
getHeight() - (int) margin.height() - (int) border.height());
return result;
}
protected int getPaddingWidth(CssContext cssCtx) {