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:
parent
2b26f6ca23
commit
ff4e36de5a
@ -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) {
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user