bug 24411

r=troy
changed the frame constructor call for <form> to pass 0 as the flags arg.


git-svn-id: svn://10.0.0.236/trunk@61062 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
buster%netscape.com 2000-02-16 05:09:57 +00:00
parent 2b26f6ca23
commit ff4e36de5a
2 changed files with 2 additions and 2 deletions

View File

@ -3740,7 +3740,7 @@ nsCSSFrameConstructor::ConstructFrameByTag(nsIPresShell* aPresShell,
rv = NS_NewObjectFrame(aPresShell, &newFrame);
}
else if (nsHTMLAtoms::form == aTag) {
rv = NS_NewFormFrame(aPresShell, &newFrame, NS_BLOCK_SPACE_MGR|NS_BLOCK_WRAP_SIZE);
rv = NS_NewFormFrame(aPresShell, &newFrame, 0);
processChildren = PR_TRUE;
}
else if (nsHTMLAtoms::frameset == aTag) {

View File

@ -3740,7 +3740,7 @@ nsCSSFrameConstructor::ConstructFrameByTag(nsIPresShell* aPresShell,
rv = NS_NewObjectFrame(aPresShell, &newFrame);
}
else if (nsHTMLAtoms::form == aTag) {
rv = NS_NewFormFrame(aPresShell, &newFrame, NS_BLOCK_SPACE_MGR|NS_BLOCK_WRAP_SIZE);
rv = NS_NewFormFrame(aPresShell, &newFrame, 0);
processChildren = PR_TRUE;
}
else if (nsHTMLAtoms::frameset == aTag) {