Fix for 93836. r=kerz, sr=ben

This commit is contained in:
hyatt%netscape.com 2001-08-06 01:14:39 +00:00
parent 94a432a62b
commit 6c3f91a885
3 changed files with 6 additions and 6 deletions

View File

@ -5513,8 +5513,8 @@ nsCSSFrameConstructor::ConstructXULFrame(nsIPresShell* aPresShell,
isReplaced = PR_TRUE;
rv = NS_NewImageBoxFrame(aPresShell, &newFrame);
}
else if (aTag == nsXULAtoms::spring) {
processChildren = PR_TRUE;
else if (aTag == nsXULAtoms::spring ||
aTag == nsHTMLAtoms::spacer) {
isReplaced = PR_TRUE;
rv = NS_NewSpringFrame(aPresShell, &newFrame);
}

View File

@ -5513,8 +5513,8 @@ nsCSSFrameConstructor::ConstructXULFrame(nsIPresShell* aPresShell,
isReplaced = PR_TRUE;
rv = NS_NewImageBoxFrame(aPresShell, &newFrame);
}
else if (aTag == nsXULAtoms::spring) {
processChildren = PR_TRUE;
else if (aTag == nsXULAtoms::spring ||
aTag == nsHTMLAtoms::spacer) {
isReplaced = PR_TRUE;
rv = NS_NewSpringFrame(aPresShell, &newFrame);
}

View File

@ -440,9 +440,9 @@ progressmeter {
/********** label **********/
/* XXXdwh <text> and <html> are deprecated. */
/* XXXdwh <text>, <html> and <spring> are deprecated. */
text, spring {
text, spring, spacer {
display: inline;
}