add form frames to debug reflow bug 115096 r=karnaze sr=attinasi

git-svn-id: svn://10.0.0.236/trunk@111500 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bernd.mielke%snafu.de
2002-01-07 19:55:56 +00:00
parent a12d7d8878
commit 779d00d083
35 changed files with 212 additions and 7 deletions

View File

@@ -54,6 +54,7 @@
#endif
#include "nsIServiceManager.h"
#include "nsIDOMNode.h"
#include "nsLayoutAtoms.h"
nsresult
@@ -83,6 +84,15 @@ nsGfxRadioControlFrame::~nsGfxRadioControlFrame()
NS_IF_RELEASE(mRadioButtonFaceStyle);
}
NS_IMETHODIMP
nsGfxRadioControlFrame::GetFrameType(nsIAtom** aType) const
{
NS_PRECONDITION(nsnull != aType, "null OUT parameter pointer");
*aType = nsLayoutAtoms::gfxRadioControlFrame;
NS_ADDREF(*aType);
return NS_OK;
}
// Frames are not refcounted, no need to AddRef
NS_IMETHODIMP
nsGfxRadioControlFrame::QueryInterface(const nsIID& aIID, void** aInstancePtr)