Fix problem in the output tests. r=rickg,a=leaf

git-svn-id: svn://10.0.0.236/trunk@60500 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akkana%netscape.com
2000-02-11 20:30:25 +00:00
parent 85cc90a499
commit e622d7e61f
4 changed files with 2 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ static NS_DEFINE_CID(kCharsetConverterManagerCID, NS_ICHARSETCONVERTERMANAGER_CI
const PRInt32 gTabSize=4;
const PRInt32 gOLNumberWidth = 3;
const PRInt32 gIndentSizeList = (gTabSize<gOLNumberWidth+3) ? gTabSize: gOLNumberWidth+3;
const PRInt32 gIndentSizeList = (gTabSize > gOLNumberWidth+3) ? gTabSize: gOLNumberWidth+3;
// Indention of non-first lines of ul and ol
static PRBool IsInline(eHTMLTags aTag);