clips inside the border instead of inside the border and padding

r=kmcclusk bug 20301
This commit is contained in:
rods@netscape.com
1999-12-02 22:07:43 +00:00
parent 662945b3bd
commit b68ffef2ad
2 changed files with 10 additions and 10 deletions

View File

@@ -432,21 +432,21 @@ nsHTMLButtonControlFrame::Paint(nsIPresContext* aPresContext,
#else // temporary
// XXX This is temporary
// clips to it's size minus the border and padding,
// clips to it's size minus the border
// but the real problem is the FirstChild (the AreaFrame)
// isn't being constrained properly
// Bug #17474
const nsStyleSpacing* spacing;
GetStyleData(eStyleStruct_Spacing, (const nsStyleStruct *&)spacing);
nsMargin borderPadding;
borderPadding.SizeTo(0, 0, 0, 0);
spacing->CalcBorderPaddingFor(this, borderPadding);
nsMargin border;
border.SizeTo(0, 0, 0, 0);
spacing->CalcBorderFor(this, border);
nsRect rect;
GetRect(rect);
rect.x = 0;
rect.y = 0;
rect.Deflate(borderPadding);
rect.Deflate(border);
aRenderingContext.PushState();
PRBool clipEmpty;