Fix for 46129. r=waterson,attinasi,pierre

git-svn-id: svn://10.0.0.236/trunk@75047 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com
2000-07-28 09:36:51 +00:00
parent 7cc13adfd8
commit a9d2806621
5 changed files with 225 additions and 3 deletions

View File

@@ -11237,6 +11237,15 @@ nsCSSFrameConstructor::RecreateFramesForContent(nsIPresContext* aPresContext,
{
nsresult rv = NS_OK;
nsCOMPtr<nsIAtom> atom;
aContent->GetTag(*getter_AddRefs(atom));
if (atom) {
nsString str;
atom->ToString(str);
char* ch = str.ToNewCString();
printf("NOOOOO! %s\n", ch);
}
nsIContent* container;
rv = aContent->GetParent(container);
if (NS_SUCCEEDED(rv) && container) {